You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-17 14:11:06 +00:00
Change auto_advance flag to advance_mode enum and unify with disabled flag.
Expressions and conditions now require auto mode to be set to auto. Adds a toggle button to the state machine editor for whether new transitions advance settings should default to auto mode or not.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user