summaryrefslogtreecommitdiffstats
path: root/editor/plugins/animation_state_machine_editor.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-12-23 09:05:49 +0100
committerRémi Verschelde <rverschelde@gmail.com>2022-12-23 09:05:49 +0100
commit9b4888b7c92ba02fa9d804946e6d44d94bc4f5f7 (patch)
treebbe301b0835eae9d96ceb73ff39919d9bb928123 /editor/plugins/animation_state_machine_editor.h
parentcc5ba0a97f24aae4d2c4c890adf54f379c0269ac (diff)
parent092dbe52a9536467c0de971e010d1f5dd5800a6f (diff)
downloadredot-engine-9b4888b7c92ba02fa9d804946e6d44d94bc4f5f7.tar.gz
Merge pull request #65312 from SaracenOne/auto_advance_behaviour
Make auto-advance flag a requirement for conditional/expression evaluation
Diffstat (limited to 'editor/plugins/animation_state_machine_editor.h')
-rw-r--r--editor/plugins/animation_state_machine_editor.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/editor/plugins/animation_state_machine_editor.h b/editor/plugins/animation_state_machine_editor.h
index 5edf803c41..28b5f0cbcc 100644
--- a/editor/plugins/animation_state_machine_editor.h
+++ b/editor/plugins/animation_state_machine_editor.h
@@ -52,15 +52,18 @@ class AnimationNodeStateMachineEditor : public AnimationTreeNodeEditorPlugin {
Button *tool_select = nullptr;
Button *tool_create = nullptr;
Button *tool_connect = nullptr;
- Button *tool_group = nullptr;
- Button *tool_ungroup = nullptr;
Popup *name_edit_popup = nullptr;
LineEdit *name_edit = nullptr;
- HBoxContainer *tool_erase_hb = nullptr;
+ HBoxContainer *selection_tools_hb = nullptr;
+ Button *tool_group = nullptr;
+ Button *tool_ungroup = nullptr;
Button *tool_erase = nullptr;
- OptionButton *transition_mode = nullptr;
+ HBoxContainer *transition_tools_hb = nullptr;
+ OptionButton *switch_mode = nullptr;
+ Button *auto_advance = nullptr;
+
OptionButton *play_mode = nullptr;
PanelContainer *panel = nullptr;