diff options
author | Silc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com> | 2023-07-21 00:34:06 +0900 |
---|---|---|
committer | Silc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com> | 2023-09-29 08:23:57 +0900 |
commit | 1b95827d3ef244de322b0c16deb49fefe48ed1a1 (patch) | |
tree | db06582520fc1e0978ac0e0908b44cd6b4b9baa6 /editor/animation_track_editor.h | |
parent | 545d1c0adbf340310e1531710eb31bd5267704d5 (diff) | |
download | redot-engine-1b95827d3ef244de322b0c16deb49fefe48ed1a1.tar.gz |
Implement AnimationManager the base class of AnimationPlayer/Tree
Diffstat (limited to 'editor/animation_track_editor.h')
-rw-r--r-- | editor/animation_track_editor.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/editor/animation_track_editor.h b/editor/animation_track_editor.h index cef726f6c0..5327099517 100644 --- a/editor/animation_track_editor.h +++ b/editor/animation_track_editor.h @@ -387,6 +387,12 @@ class AnimationTrackEditor : public VBoxContainer { Button *imported_anim_warning = nullptr; void _show_imported_anim_warning(); + Button *dummy_player_warning = nullptr; + void _show_dummy_player_warning(); + + Button *inactive_player_warning = nullptr; + void _show_inactive_player_warning(); + void _snap_mode_changed(int p_mode); Vector<AnimationTrackEdit *> track_edits; Vector<AnimationTrackEditGroup *> groups; @@ -645,6 +651,8 @@ public: void commit_insert_queue(); void show_select_node_warning(bool p_show); + void show_dummy_player_warning(bool p_show); + void show_inactive_player_warning(bool p_show); bool is_key_selected(int p_track, int p_key) const; bool is_selection_active() const; |