The SerializedObject class in the Sandbox namespace represents an object or data that can be accessed as an object. It provides methods and properties to interact with serialized properties, allowing for dynamic data manipulation and event handling.
The SerializedObject class in the Sandbox namespace represents an object or data that can be accessed as an object. It provides methods and properties to interact with serialized properties, allowing for dynamic data manipulation and event handling.
Member Name | Summary |
---|---|
GetProperty | Retrieves a serialized property by name. |
TryGetProperty | Attempts to retrieve a serialized property by name, returning a boolean indicating success. |
GetEnumerator | Returns an enumerator that iterates through the serialized properties. |
NoteChanged | Notifies that a property has changed. |
NotePreChange | Notifies before a property change occurs. |
NoteStartEdit | Notifies when a property edit starts. |
NoteFinishEdit | Notifies when a property edit finishes. |
Member Name | Summary |
---|---|
ParentProperty | Gets the parent property of this serialized object. |
TypeIcon | Gets the icon representing the type of this serialized object. |
TypeName | Gets the name of the type of this serialized object. |
TypeTitle | Gets the title of the type of this serialized object. |
OnPropertyPreChange | Delegate for handling pre-change events of properties. |
OnPropertyChanged | Delegate for handling property changed events. |
OnPropertyStartEdit | Delegate for handling the start of property edit events. |
OnPropertyFinishEdit | Delegate for handling the finish of property edit events. |
IsMultipleTargets | Indicates if the target is multiple objects. |
Targets | Gets a list of actual target objects, if applicable. |