summaryrefslogtreecommitdiffstats
path: root/editor/animation_track_editor.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-03-24 01:14:23 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-03-24 01:14:23 +0100
commit0ca0e8fc49c6cc48a0afa2cbff5f6e92fda0c954 (patch)
tree2b466778daf87f9a6152a3179de9cd15492fca15 /editor/animation_track_editor.h
parentb0505b580d01c88844e0eb7550639b7aa655db97 (diff)
parentd88df641eec1fcc246f078827a94bfbebcaf5dff (diff)
downloadredot-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.h4
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;