Interface IEditable
Interface for all objects that can be modified (dirty state) and expose some functionalities and events.
Namespace: FlaxEditor
Assembly: FlaxEngine.CSharp.dll
Syntax
public interface IEditable
Properties
IsEdited
Gets a value indicating whether this object is edited (dirty state).
Declaration
bool IsEdited { get; }
Property Value
System.Boolean
|
Methods
MarkAsEdited()
Marks object as edited (sets dirty flag).
Declaration
void MarkAsEdited()
Events
OnEdited
Occurs when object gets edited.
Declaration
event Action OnEdited
Event Type
System.Action
|