summaryrefslogtreecommitdiffstats
path: root/editor/animation_bezier_editor.cpp
diff options
context:
space:
mode:
authorKasper Arnklit Frandsen <kasper.arnklit@gmail.com>2024-08-16 14:11:32 +0100
committerKasper Arnklit Frandsen <kasper.arnklit@gmail.com>2024-09-02 15:57:50 +0200
commit88a866fb5a5864b84489e4e2a216f5be75b786de (patch)
tree3ba0414304c7711bad83af91ab775cda38993781 /editor/animation_bezier_editor.cpp
parent88197d4a513a7873cb7cf85138a42a04fb1c9011 (diff)
downloadredot-engine-88a866fb5a5864b84489e4e2a216f5be75b786de.tar.gz
Add separate timeline snapping control to Animation Editor
Diffstat (limited to 'editor/animation_bezier_editor.cpp')
-rw-r--r--editor/animation_bezier_editor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/animation_bezier_editor.cpp b/editor/animation_bezier_editor.cpp
index 5196857240..a2fba2c41e 100644
--- a/editor/animation_bezier_editor.cpp
+++ b/editor/animation_bezier_editor.cpp
@@ -1660,7 +1660,7 @@ void AnimationBezierTrackEdit::_menu_selected(int p_index) {
switch (p_index) {
case MENU_KEY_INSERT: {
if (animation->get_track_count() > 0) {
- if (editor->snap->is_pressed() && editor->step->get_value() != 0) {
+ if (editor->snap_keys->is_pressed() && editor->step->get_value() != 0) {
time = editor->snap_time(time);
}
while (animation->track_find_key(selected_track, time, Animation::FIND_MODE_APPROX) != -1) {
@@ -1736,7 +1736,7 @@ void AnimationBezierTrackEdit::duplicate_selected_keys(real_t p_ofs, bool p_ofs_
real_t insert_pos = p_ofs_valid ? p_ofs : timeline->get_play_position();
if (p_ofs_valid) {
- if (editor->snap->is_pressed() && editor->step->get_value() != 0) {
+ if (editor->snap_keys->is_pressed() && editor->step->get_value() != 0) {
insert_pos = editor->snap_time(insert_pos);
}
}
@@ -1859,7 +1859,7 @@ void AnimationBezierTrackEdit::paste_keys(real_t p_ofs, bool p_ofs_valid) {
float insert_pos = p_ofs_valid ? p_ofs : timeline->get_play_position();
if (p_ofs_valid) {
- if (editor->snap->is_pressed() && editor->step->get_value() != 0) {
+ if (editor->snap_keys->is_pressed() && editor->step->get_value() != 0) {
insert_pos = editor->snap_time(insert_pos);
}
}