diff options
author | Saracen <SaracenOne@gmail.com> | 2024-09-12 10:22:11 +0100 |
---|---|---|
committer | Saracen <SaracenOne@gmail.com> | 2024-09-15 15:09:13 +0100 |
commit | 86fc8ef99b6b3befb7ac604ece31354f0244892f (patch) | |
tree | 82c6b1f2189b2cd6f479a11234f7206bb0314ec2 /editor/animation_track_editor.h | |
parent | 6681f2563b99e14929a8acb27f4908fece398ef1 (diff) | |
download | redot-engine-86fc8ef99b6b3befb7ac604ece31354f0244892f.tar.gz |
Fix selection box + scrolling in animation editor.
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 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<ViewPanner> panner; void _pan_callback(Vector2 p_scroll_vec, Ref<InputEvent> p_event); void _zoom_callback(float p_zoom_factor, Vector2 p_origin, Ref<InputEvent> 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<InputEvent> &p_event); Vector<Ref<AnimationTrackEditPlugin>> track_edit_plugins; |