Table of Contents

Class InspectorListPropertyDrawer

Namespace
Gamelogic.Extensions.Editor
Assembly
Assembly-CSharp-Editor.dll

A property drawer for type InspectorList.

[Version(2, 5, 0)]
[CustomPropertyDrawer(typeof(InspectorList), true)]
[Obsolete]
public class InspectorListPropertyDrawer : PropertyDrawer
Inheritance
GUIDrawer
InspectorListPropertyDrawer
Inherited Members
PropertyDrawer.CanCacheInspectorGUI(SerializedProperty)
PropertyDrawer.attribute
PropertyDrawer.fieldInfo
Extension Methods

Methods

GetPropertyHeight(SerializedProperty, GUIContent)

Override this method to specify how tall the GUI for this field is in pixels.

public override float GetPropertyHeight(SerializedProperty property, GUIContent label)

Parameters

property SerializedProperty

The SerializedProperty to make the custom GUI for.

label GUIContent

The label of this property.

Returns

float

The height in pixels.

InitList(SerializedProperty, SerializedProperty)

public void InitList(SerializedProperty list, SerializedProperty property)

Parameters

list SerializedProperty
property SerializedProperty

OnGUI(Rect, SerializedProperty, GUIContent)

Override this method to make your own IMGUI based GUI for the property.

public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)

Parameters

position Rect

Rectangle on the screen to use for the property GUI.

property SerializedProperty

The SerializedProperty to make the custom GUI for.

label GUIContent

The label of this property.