class SerializedObject

robot_2Generated
code_blocksInput

Description

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.

Members

Instance Methods

Member NameSummary
GetPropertyRetrieves a serialized property by name.
TryGetPropertyAttempts to retrieve a serialized property by name, returning a boolean indicating success.
GetEnumeratorReturns an enumerator that iterates through the serialized properties.
NoteChangedNotifies that a property has changed.
NotePreChangeNotifies before a property change occurs.
NoteStartEditNotifies when a property edit starts.
NoteFinishEditNotifies when a property edit finishes.

Instance Properties

Member NameSummary
ParentPropertyGets the parent property of this serialized object.
TypeIconGets the icon representing the type of this serialized object.
TypeNameGets the name of the type of this serialized object.
TypeTitleGets the title of the type of this serialized object.
OnPropertyPreChangeDelegate for handling pre-change events of properties.
OnPropertyChangedDelegate for handling property changed events.
OnPropertyStartEditDelegate for handling the start of property edit events.
OnPropertyFinishEditDelegate for handling the finish of property edit events.
IsMultipleTargetsIndicates if the target is multiple objects.
TargetsGets a list of actual target objects, if applicable.