summaryrefslogtreecommitdiffstats
path: root/editor/animation_track_editor.h
diff options
context:
space:
mode:
authorCookieBadger <emil.dobetsberger@gmail.com>2023-11-15 17:33:58 +0100
committeremild <emil.dobetsberger@gmail.com>2024-01-07 01:30:06 +0100
commit5b3d5e0a65f3eb6fd4282cd1e5f24410f3c37a5f (patch)
tree31b49ca9c730eb6d00646d43686b9a92f8cde0f7 /editor/animation_track_editor.h
parentac29e8e3fed8a8c8d74a267a60eee75b979bb994 (diff)
downloadredot-engine-5b3d5e0a65f3eb6fd4282cd1e5f24410f3c37a5f.tar.gz
Improved usability of zoom features in animation player
Diffstat (limited to 'editor/animation_track_editor.h')
-rw-r--r--editor/animation_track_editor.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/editor/animation_track_editor.h b/editor/animation_track_editor.h
index 5592d43ffe..4f783795a3 100644
--- a/editor/animation_track_editor.h
+++ b/editor/animation_track_editor.h
@@ -129,6 +129,11 @@ protected:
class AnimationTimelineEdit : public Range {
GDCLASS(AnimationTimelineEdit, Range);
+ friend class AnimationBezierTrackEdit;
+ friend class AnimationTrackEditor;
+
+ static constexpr float SCROLL_ZOOM_FACTOR = 1.02f; // Zoom factor per mouse scroll in the animation editor. The closer to 1.0, the finer the control.
+
Ref<Animation> animation;
bool read_only = false;
@@ -165,6 +170,11 @@ class AnimationTimelineEdit : public Range {
bool dragging_hsize = false;
float dragging_hsize_from = 0.0f;
float dragging_hsize_at = 0.0f;
+ double last_zoom_scale = 1.0;
+ double hscroll_on_zoom_buffer = -1.0;
+
+ Vector2 zoom_scroll_origin;
+ bool zoom_callback_occured = false;
virtual void gui_input(const Ref<InputEvent> &p_event) override;
void _track_added(int p_track);