diff options
author | Silc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com> | 2023-12-31 16:05:34 +0900 |
---|---|---|
committer | Silc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com> | 2024-02-18 00:15:33 +0900 |
commit | 465909054338b6e0ce9c1f62952694f114bce8d2 (patch) | |
tree | 1bc309a160dd8501e637f7597f658b6683e78207 /editor/animation_track_editor.h | |
parent | 0a89888cba71c5adb175df99011fd5dc3bdebff9 (diff) | |
download | redot-engine-465909054338b6e0ce9c1f62952694f114bce8d2.tar.gz |
Make consistent the retrieval of audio tracks
Diffstat (limited to 'editor/animation_track_editor.h')
-rw-r--r-- | editor/animation_track_editor.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/editor/animation_track_editor.h b/editor/animation_track_editor.h index bb84577ba3..3f8dedb25c 100644 --- a/editor/animation_track_editor.h +++ b/editor/animation_track_editor.h @@ -556,6 +556,8 @@ class AnimationTrackEditor : public VBoxContainer { SpinBox *optimize_precision_error = nullptr; ConfirmationDialog *cleanup_dialog = nullptr; + CheckBox *cleanup_keys_with_trimming_head = nullptr; + CheckBox *cleanup_keys_with_trimming_end = nullptr; CheckBox *cleanup_keys = nullptr; CheckBox *cleanup_tracks = nullptr; CheckBox *cleanup_all = nullptr; @@ -654,9 +656,15 @@ public: EDIT_SCALE_SELECTION, EDIT_SCALE_FROM_CURSOR, EDIT_SCALE_CONFIRM, + EDIT_SET_START_OFFSET, + EDIT_SET_END_OFFSET, EDIT_EASE_SELECTION, EDIT_EASE_CONFIRM, EDIT_DUPLICATE_SELECTED_KEYS, + EDIT_DUPLICATE_SELECTION, + EDIT_DUPLICATE_TRANSPOSED, + EDIT_MOVE_FIRST_SELECTED_KEY_TO_CURSOR, + EDIT_MOVE_LAST_SELECTED_KEY_TO_CURSOR, EDIT_ADD_RESET_KEY, EDIT_DELETE_SELECTION, EDIT_GOTO_NEXT_STEP, |