summaryrefslogtreecommitdiffstats
path: root/editor/animation_track_editor.h
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_track_editor.h
parent88197d4a513a7873cb7cf85138a42a04fb1c9011 (diff)
downloadredot-engine-88a866fb5a5864b84489e4e2a216f5be75b786de.tar.gz
Add separate timeline snapping control to Animation Editor
Diffstat (limited to 'editor/animation_track_editor.h')
-rw-r--r--editor/animation_track_editor.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/editor/animation_track_editor.h b/editor/animation_track_editor.h
index 516ddb0154..8a263d7d20 100644
--- a/editor/animation_track_editor.h
+++ b/editor/animation_track_editor.h
@@ -408,7 +408,8 @@ class AnimationTrackEditor : public VBoxContainer {
HSlider *zoom = nullptr;
EditorSpinSlider *step = nullptr;
TextureRect *zoom_icon = nullptr;
- Button *snap = nullptr;
+ Button *snap_keys = nullptr;
+ Button *snap_timeline = nullptr;
Button *bezier_edit_icon = nullptr;
OptionButton *snap_mode = nullptr;
Button *auto_fit = nullptr;
@@ -728,7 +729,8 @@ public:
bool is_selection_active() const;
bool is_key_clipboard_active() const;
bool is_moving_selection() const;
- bool is_snap_enabled() const;
+ bool is_snap_timeline_enabled() const;
+ bool is_snap_keys_enabled() const;
bool is_bezier_editor_active() const;
bool can_add_reset_key() const;
float get_moving_selection_offset() const;