EditorUtility.GetDirtyCount

public static int GetDirtyCount(int instanceID);
public static int GetDirtyCount(Object target);

Parameters

instanceIDThe object's instance ID.
targetThe object.

Description 描述

Returns an integer that indicates the number of times the specified object's serialized properties have changed.

This count is incremented each time a call to SetDirty changes the object's serializable properties, and is reset to zero when the object is saved.

See Also: IsDirty, SetDirty.