diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2022-07-17 19:42:53 +0200 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2022-07-17 19:51:15 +0200 |
commit | b46a2aaa4bb4ed89be2e8fb8cdde9258f72172c8 (patch) | |
tree | 75c1d1fc8f51d72e93b8565b238f1e11bed9e457 /editor/animation_track_editor.h | |
parent | 3ae61590e1ca3d4df078f4aa728856586e828bc2 (diff) | |
download | redot-engine-b46a2aaa4bb4ed89be2e8fb8cdde9258f72172c8.tar.gz |
Create reset tracks with the right update mode
Diffstat (limited to 'editor/animation_track_editor.h')
-rw-r--r-- | editor/animation_track_editor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/animation_track_editor.h b/editor/animation_track_editor.h index 55c3bd922a..dede2e9bbe 100644 --- a/editor/animation_track_editor.h +++ b/editor/animation_track_editor.h @@ -375,8 +375,8 @@ class AnimationTrackEditor : public VBoxContainer { reset = p_reset_anim ? p_reset_anim->get_track_count() : 0; } }; - TrackIndices _confirm_insert(InsertData p_id, TrackIndices p_next_tracks, bool p_create_reset, Ref<Animation> p_reset_anim, bool p_create_beziers); - void _insert_track(bool p_create_reset, bool p_create_beziers); + TrackIndices _confirm_insert(InsertData p_id, TrackIndices p_next_tracks, bool p_reset_wanted, Ref<Animation> p_reset_anim, bool p_create_beziers); + void _insert_track(bool p_reset_wanted, bool p_create_beziers); void _root_removed(); |