| 1234567891011121314151617 | using UnityEngine;#if UNITY_EDITORusing UnityEditor;#endifnamespace UnityUIPlayables{    internal interface IAttributePropertyDrawer    {#if UNITY_EDITOR        void OnGUI(Rect position, SerializedProperty property, GUIContent label);        float GetPropertyHeight(SerializedProperty property, GUIContent label);#endif    }}
 |