SerializedPropertyDrawerBase base class used to create property drawers for any class based upon SerializableTree<T> You will need to derive your own version of this class, and specify T, in order to be able to assign it the CustomPropertyDrawer Attribute.
- Template Parameters
-
T | The type upon which the SerializableTree is based. |
|
override float | GetPropertyHeight (SerializedProperty property, GUIContent label) |
| Used to get the height of the tree, when drawn.
|
|
override void | OnGUI (Rect position, SerializedProperty property, GUIContent label) |
| This Code is called upon to perform the actual drawing of the tree.
|
|