From 86fc8ef99b6b3befb7ac604ece31354f0244892f Mon Sep 17 00:00:00 2001 From: Saracen Date: Thu, 12 Sep 2024 10:22:11 +0100 Subject: Fix selection box + scrolling in animation editor. --- editor/animation_track_editor.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'editor/animation_track_editor.h') diff --git a/editor/animation_track_editor.h b/editor/animation_track_editor.h index 8a263d7d20..99f2807456 100644 --- a/editor/animation_track_editor.h +++ b/editor/animation_track_editor.h @@ -498,6 +498,10 @@ class AnimationTrackEditor : public VBoxContainer { PropertyInfo _find_hint_for_track(int p_idx, NodePath &r_base_path, Variant *r_current_val = nullptr); + void _scroll_changed(const Vector2 &p_val); + void _v_scroll_changed(float p_val); + void _h_scroll_changed(float p_val); + Ref panner; void _pan_callback(Vector2 p_scroll_vec, Ref p_event); void _zoom_callback(float p_zoom_factor, Vector2 p_origin, Ref p_event); @@ -540,11 +544,15 @@ class AnimationTrackEditor : public VBoxContainer { void _update_key_edit(); void _clear_key_edit(); + Control *box_selection_container = nullptr; + Control *box_selection = nullptr; void _box_selection_draw(); bool box_selecting = false; Vector2 box_selecting_from; + Vector2 box_selecting_to; Rect2 box_select_rect; + Vector2 prev_scroll_position; void _scroll_input(const Ref &p_event); Vector> track_edit_plugins; -- cgit v1.2.3