diff options
author | emild <emil.dobetsberger@gmail.com> | 2024-02-15 00:44:40 +0100 |
---|---|---|
committer | emild <emil.dobetsberger@gmail.com> | 2024-02-15 00:44:40 +0100 |
commit | af08997de7bc05fc60ca3c8695a659c934cd7473 (patch) | |
tree | fc1c1683d7e43bdf6266064ff3845beb028697ea /editor/animation_bezier_editor.h | |
parent | e92d55bbf417aa9f4592a863cb5b2c7ba0740e21 (diff) | |
download | redot-engine-af08997de7bc05fc60ca3c8695a659c934cd7473.tar.gz |
implemented cut selected keys in animation player
Diffstat (limited to 'editor/animation_bezier_editor.h')
-rw-r--r-- | editor/animation_bezier_editor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/animation_bezier_editor.h b/editor/animation_bezier_editor.h index 109ba0d780..ec2b52221e 100644 --- a/editor/animation_bezier_editor.h +++ b/editor/animation_bezier_editor.h @@ -42,6 +42,7 @@ class AnimationBezierTrackEdit : public Control { enum { MENU_KEY_INSERT, MENU_KEY_DUPLICATE, + MENU_KEY_CUT, MENU_KEY_COPY, MENU_KEY_PASTE, MENU_KEY_DELETE, @@ -212,7 +213,7 @@ public: void update_play_position(); void duplicate_selected_keys(real_t p_ofs); - void copy_selected_keys(); + void copy_selected_keys(bool p_cut); void paste_keys(real_t p_ofs); void delete_selection(); |