diff options
author | kobewi <kobewi4e@gmail.com> | 2022-12-07 18:15:09 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-12-08 15:06:29 +0100 |
commit | f764db1bddad9925b8434642b8f27d89ab246d64 (patch) | |
tree | 1cd50ccfa6ef14cee838eb66d99f920a5adb77c5 /doc/classes | |
parent | 12ab5731ab560744cc263e175e7c3a5d3c4ab597 (diff) | |
download | redot-engine-f764db1bddad9925b8434642b8f27d89ab246d64.tar.gz |
Add remote history to EditorUndoRedoManager
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/EditorUndoRedoManager.xml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/classes/EditorUndoRedoManager.xml b/doc/classes/EditorUndoRedoManager.xml index 133ee9db0d..cd96e740e8 100644 --- a/doc/classes/EditorUndoRedoManager.xml +++ b/doc/classes/EditorUndoRedoManager.xml @@ -123,6 +123,9 @@ <constant name="GLOBAL_HISTORY" value="0" enum="SpecialHistory"> Global history not associated with any scene, but with external resources etc. </constant> + <constant name="REMOTE_HISTORY" value="-9" enum="SpecialHistory"> + History associated with remote inspector. Used when live editing a running project. + </constant> <constant name="INVALID_HISTORY" value="-99" enum="SpecialHistory"> Invalid "null" history. It's a special value, not associated with any object. </constant> |