示例#1
0
 protected float GetNextHeight(SerializedProperty property, GUIContent label)
 {
     return(_nextDrawer == null?EditorGUI.GetPropertyHeight(property) : _nextDrawer.GetPropertyHeight(property, label));
 }
        private float GetItemHeight(int index)
        {
            var property = _property.GetArrayElementAtIndex(index);

            return(_itemDrawer.GetPropertyHeight(property, GUIContent.none));
        }