diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-18 11:23:41 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-18 11:23:41 +0100 |
commit | 4002ea7e15cfd0951461bbcebf7dc03c3532caa9 (patch) | |
tree | 884ab948776a6de16fc818ec67c3a2965a07468c /editor/animation_track_editor.h | |
parent | d318177c5e03db4f6bf1f44a9abd95cfe34654f5 (diff) | |
parent | af08997de7bc05fc60ca3c8695a659c934cd7473 (diff) | |
download | redot-engine-4002ea7e15cfd0951461bbcebf7dc03c3532caa9.tar.gz |
Merge pull request #88350 from CookieBadger/animation-cut-keyframe
Implement Cut Selected Keys in AnimationPlayer
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 3f8dedb25c..0d6f93fefc 100644 --- a/editor/animation_track_editor.h +++ b/editor/animation_track_editor.h @@ -231,6 +231,7 @@ class AnimationTrackEdit : public Control { MENU_LOOP_CLAMP, MENU_KEY_INSERT, MENU_KEY_DUPLICATE, + MENU_KEY_CUT, MENU_KEY_COPY, MENU_KEY_PASTE, MENU_KEY_ADD_RESET, @@ -580,7 +581,7 @@ class AnimationTrackEditor : public VBoxContainer { void _anim_duplicate_keys(float p_ofs, int p_track); - void _anim_copy_keys(); + void _anim_copy_keys(bool p_cut); bool _is_track_compatible(int p_target_track_idx, Variant::Type p_source_value_type, Animation::TrackType p_source_track_type); @@ -651,6 +652,7 @@ public: EDIT_COPY_TRACKS, EDIT_COPY_TRACKS_CONFIRM, EDIT_PASTE_TRACKS, + EDIT_CUT_KEYS, EDIT_COPY_KEYS, EDIT_PASTE_KEYS, EDIT_SCALE_SELECTION, |