diff options
author | Kasper Arnklit Frandsen <kasper.arnklit@gmail.com> | 2024-08-16 14:11:32 +0100 |
---|---|---|
committer | Kasper Arnklit Frandsen <kasper.arnklit@gmail.com> | 2024-09-02 15:57:50 +0200 |
commit | 88a866fb5a5864b84489e4e2a216f5be75b786de (patch) | |
tree | 3ba0414304c7711bad83af91ab775cda38993781 /editor/animation_track_editor.h | |
parent | 88197d4a513a7873cb7cf85138a42a04fb1c9011 (diff) | |
download | redot-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.h | 6 |
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; |