void NoteFinishEdit( SerializedProperty childProperty )

book_4_sparkGenerated
code_blocksInput

Description

The NoteFinishEdit method is a virtual method of the SerializedObject class. It is used to signal that the editing of a serialized property has been completed. This method is typically 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 a class that inherits from SerializedObject. You can then call this method, passing in the SerializedProperty that has finished being edited.

This method is virtual, so it can be overridden in a derived class to provide custom behavior when a property edit is completed.

Example

// Assuming 'mySerializedObject' is an instance of a class derived from SerializedObject
// and 'property' is a SerializedProperty that has been edited.

mySerializedObject.NoteFinishEdit(property);