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 retrieval.
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 retrieval.
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 child property has changed. |
NotePreChange | Notifies before a child property changes. |
NoteStartEdit | Notifies when editing of a child property starts. |
NoteFinishEdit | Notifies when editing of a child property 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 start edit events of properties. |
OnPropertyFinishEdit | Delegate for handling finish edit events of properties. |
IsMultipleTargets | Indicates if the target is multiple objects. |
Targets | Provides a list of actual target objects, if applicable. |