Files
2026-07-21 08:56:10 +03:00

10 lines
477 B
Plaintext

@startuml
abstract class PropertyDrawerBase {
+ <<sealed>> <<override>> OnGUI(rect:Rect, property:SerializedProperty, label:GUIContent) : void
<<sealed>> <<override>> + GetPropertyHeight(property:SerializedProperty, label:GUIContent) : float
+ <<virtual>> GetHelpBoxHeight() : float
+ DrawDefaultPropertyAndHelpBox(rect:Rect, property:SerializedProperty, message:string, messageType:MessageType) : void
}
PropertyDrawer <|-- PropertyDrawerBase
@enduml