diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-02 18:52:42 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-02 18:52:42 +0100 |
commit | 17497b1eb977b0b717066d5ee2f1534e2b7215b5 (patch) | |
tree | 5c68180c67b309cb5839d4fd2d14742be84c092b /doc/classes | |
parent | d2e1b4b9f0cbd67e38773ad610912ff382cf4d4f (diff) | |
parent | f42cd7f83f82a34b8cbc168de4e9f37bbe674150 (diff) |
Merge pull request #65012 from KoBeWi/Godot_museum
Add history dock
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/EditorUndoRedoManager.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/classes/EditorUndoRedoManager.xml b/doc/classes/EditorUndoRedoManager.xml index 1350e4487c..c1e771d653 100644 --- a/doc/classes/EditorUndoRedoManager.xml +++ b/doc/classes/EditorUndoRedoManager.xml @@ -107,6 +107,18 @@ </description> </method> </methods> + <signals> + <signal name="history_changed"> + <description> + Emitted when the list of actions in any history has changed, either when an action is commited or a history is cleared. + </description> + </signal> + <signal name="version_changed"> + <description> + Emitted when the version of any history has changed as a result of undo or redo call. + </description> + </signal> + </signals> <constants> <constant name="GLOBAL_HISTORY" value="0" enum="SpecialHistory"> Global history not associated with any scene, but with external resources etc. |