Description
The NoteChanged
method is a virtual method of the SerializedObject
class in the Sandbox namespace. It is used to notify the system that a change has occurred in a specific serialized property. This method is typically called after a property has been modified to ensure that any necessary updates or actions are taken in response to the change.
Usage
To use the NoteChanged
method, you need to have an instance of a SerializedObject
and a SerializedProperty
that has been modified. Call the method with the modified property as the parameter to notify the system of the change.
Example
// Assume 'serializedObject' is an instance of SerializedObject
// and 'property' is a SerializedProperty that has been changed.
serializedObject.NoteChanged(property);