diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:14:23 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:14:23 +0100 |
commit | 0ca0e8fc49c6cc48a0afa2cbff5f6e92fda0c954 (patch) | |
tree | 2b466778daf87f9a6152a3179de9cd15492fca15 /editor/animation_track_editor.h | |
parent | b0505b580d01c88844e0eb7550639b7aa655db97 (diff) | |
parent | d88df641eec1fcc246f078827a94bfbebcaf5dff (diff) | |
download | redot-engine-0ca0e8fc49c6cc48a0afa2cbff5f6e92fda0c954.tar.gz |
Merge pull request #88498 from CookieBadger/animation-fix-snapping-multiple
Fix snapping multiple keys in Animation
Diffstat (limited to 'editor/animation_track_editor.h')
-rw-r--r-- | editor/animation_track_editor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/animation_track_editor.h b/editor/animation_track_editor.h index 49a18409d0..f449b51b81 100644 --- a/editor/animation_track_editor.h +++ b/editor/animation_track_editor.h @@ -290,9 +290,11 @@ class AnimationTrackEdit : public Control { mutable int dropping_at = 0; float insert_at_pos = 0.0f; bool moving_selection_attempt = false; + bool moving_selection_effective = false; + float moving_selection_pivot = 0.0f; + float moving_selection_mouse_begin_x = 0.0f; int select_single_attempt = -1; bool moving_selection = false; - float moving_selection_from_ofs = 0.0f; bool in_group = false; AnimationTrackEditor *editor = nullptr; |