diff options
author | Hilderin <81109165+Hilderin@users.noreply.github.com> | 2024-01-11 09:58:32 -0500 |
---|---|---|
committer | Hilderin <81109165+Hilderin@users.noreply.github.com> | 2024-03-19 21:01:15 -0400 |
commit | b46d0a6ea8131d67fe86e5c1322562aee9a204eb (patch) | |
tree | 8920c8cac7b5a91fec4c18e41c5e6bac96d76986 /editor/animation_bezier_editor.h | |
parent | fe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff) | |
download | redot-engine-b46d0a6ea8131d67fe86e5c1322562aee9a204eb.tar.gz |
Add auto focus timeline and bezier scale on animation editor
Add a button at the bottom of the animation editor that change the zoom based on the animation length and the bezier scale based on the values and handles of the displayed tracks. The icon and the tooltip of the button change depending if the bezier editor is displayed or not.
Some refactor was made in animation_track_editor.cpp to remove code duplication with the visibility check of the tracks.
This should help with the issue #85826
Diffstat (limited to 'editor/animation_bezier_editor.h')
-rw-r--r-- | editor/animation_bezier_editor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/animation_bezier_editor.h b/editor/animation_bezier_editor.h index ec2b52221e..371c563267 100644 --- a/editor/animation_bezier_editor.h +++ b/editor/animation_bezier_editor.h @@ -101,6 +101,8 @@ class AnimationBezierTrackEdit : public Control { void _menu_selected(int p_index); void _play_position_draw(); + bool _is_track_displayed(int p_track_index); + bool _is_track_curves_displayed(int p_track_index); Vector2 insert_at_pos; @@ -188,6 +190,7 @@ class AnimationBezierTrackEdit : public Control { void _draw_track(int p_track, const Color &p_color); float _bezier_h_to_pixel(float p_h); + void _zoom_vertically(real_t p_minimum_value, real_t p_maximum_value); protected: static void _bind_methods(); @@ -208,6 +211,7 @@ public: void set_editor(AnimationTrackEditor *p_editor); void set_root(Node *p_root); void set_filtered(bool p_filtered); + void auto_fit_vertically(); void set_play_position(real_t p_pos); void update_play_position(); |