Description
The NoteFinishEdit
method is a virtual method of the SerializedObject
class. It is used to signal the completion of an edit operation on a serialized property. This method should be called after changes to a property have been finalized, allowing any necessary post-edit operations to be performed.
Usage
To use the NoteFinishEdit
method, you need to have an instance of SerializedObject
and a SerializedProperty
that represents the property you have finished editing. Call this method with the property as the parameter to notify the system that editing is complete.
Example
// Assume 'serializedObject' is an instance of SerializedObject
// and 'property' is a SerializedProperty that has been edited.
serializedObject.NoteFinishEdit(property);