diff options
author | ajreckof <66184050+ajreckof@users.noreply.github.com> | 2023-06-02 23:03:39 +0200 |
---|---|---|
committer | ajreckof <66184050+ajreckof@users.noreply.github.com> | 2023-06-13 15:32:05 +0200 |
commit | 81aa5ad999e448a4a864526f02ef9e6b68856144 (patch) | |
tree | c3fa3e34fac7986068f856cb33424402e3564254 /doc/classes/EditorUndoRedoManager.xml | |
parent | ae896bbd85d0c9f1883c81f138045c3753ccef01 (diff) | |
download | redot-engine-81aa5ad999e448a4a864526f02ef9e6b68856144.tar.gz |
add backward_undo_ops as property for action
Diffstat (limited to 'doc/classes/EditorUndoRedoManager.xml')
-rw-r--r-- | doc/classes/EditorUndoRedoManager.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/classes/EditorUndoRedoManager.xml b/doc/classes/EditorUndoRedoManager.xml index aaf74ebbe0..553e36bd42 100644 --- a/doc/classes/EditorUndoRedoManager.xml +++ b/doc/classes/EditorUndoRedoManager.xml @@ -80,10 +80,12 @@ <param index="0" name="name" type="String" /> <param index="1" name="merge_mode" type="int" enum="UndoRedo.MergeMode" default="0" /> <param index="2" name="custom_context" type="Object" default="null" /> + <param index="3" name="backward_undo_ops" type="bool" default="false" /> <description> Create a new action. After this is called, do all your calls to [method add_do_method], [method add_undo_method], [method add_do_property], and [method add_undo_property], then commit the action with [method commit_action]. The way actions are merged is dictated by the [param merge_mode] argument. See [enum UndoRedo.MergeMode] for details. If [param custom_context] object is provided, it will be used for deducing target history (instead of using the first operation). + The way undo operation are ordered in actions is dictated by [param backward_undo_ops]. When [param backward_undo_ops] is [code]false[/code] undo option are ordered in the same order they were added. Which means the first operation to be added will be the first to be undone. </description> </method> <method name="get_history_undo_redo" qualifiers="const"> |