Borodar.ReorderableList.SerializedPropertyAdaptor.GetItemHeight C# (CSharp) Метод

GetItemHeight() публичный Метод

public GetItemHeight ( int index ) : float
index int
Результат float
        public virtual float GetItemHeight(int index)
        {
            return FixedItemHeight != 0f
                ? FixedItemHeight
                : EditorGUI.GetPropertyHeight(this[index], GUIContent.none, false)
                ;
        }