Click or drag to resize

UndoRedoMergeMode Enumeration

[Missing <summary> documentation for "T:Godot.UndoRedo.MergeMode"]

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public enum MergeMode
Members
  Member nameValueDescription
Disable0

Makes "do"/"undo" operations stay in separate actions.

Ends1

Makes so that the action's "do" operation is from the first action created and the "undo" operation is from the last subsequent action with the same name.

All2

Makes subsequent actions with the same name be merged into one.

See Also