Class EditorUndo
Implements
System.IDisposable
  Namespace: FlaxEditor
Assembly: FlaxEngine.CSharp.dll
Syntax
public class EditorUndo : Undo, IDisposableProperties
Enabled
Gets or sets a value indicating whether this Undo is enabled.
Declaration
public override bool Enabled { get; set; }Property Value
| System.Boolean 
 | 
Overrides
Methods
OnAction(IUndoAction)
Called when Undo performs action.
Declaration
protected override void OnAction(IUndoAction action)Parameters
| IUndoAction
        action The action. | 
Overrides
OnRedo(IUndoAction)
Called when Undo performs redo action.
Declaration
protected override void OnRedo(IUndoAction action)Parameters
| IUndoAction
        action The action. | 
Overrides
OnUndo(IUndoAction)
Called when Undo performs undo action.
Declaration
protected override void OnUndo(IUndoAction action)Parameters
| IUndoAction
        action The action. |