diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-23 09:05:49 +0100 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-23 09:05:49 +0100 |
| commit | 9b4888b7c92ba02fa9d804946e6d44d94bc4f5f7 (patch) | |
| tree | bbe301b0835eae9d96ceb73ff39919d9bb928123 /editor/plugins/animation_state_machine_editor.h | |
| parent | cc5ba0a97f24aae4d2c4c890adf54f379c0269ac (diff) | |
| parent | 092dbe52a9536467c0de971e010d1f5dd5800a6f (diff) | |
| download | redot-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.h | 11 |
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; |
