diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-07-24 08:39:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-24 08:39:30 +0200 |
commit | adae2b073811d0f81afdfab277fdb27d2ba9f16a (patch) | |
tree | 68eaa38c3057b138c547f7e415b287dfa7d27f97 /editor/animation_track_editor.h | |
parent | c608b6f6483254f1a6d2340135d95810037fc2fe (diff) | |
parent | 97e18f03dbf15fc49e41a1c71cd5db6899b2673f (diff) |
Merge pull request #30778 from YeldhamDev/anim_multi_key_edit
Make possible to edit multiple keys in an animation again
Diffstat (limited to 'editor/animation_track_editor.h')
-rw-r--r-- | editor/animation_track_editor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/animation_track_editor.h b/editor/animation_track_editor.h index 8dc2304a95..9e16f2faf7 100644 --- a/editor/animation_track_editor.h +++ b/editor/animation_track_editor.h @@ -246,6 +246,7 @@ public: }; class AnimationTrackKeyEdit; +class AnimationMultiTrackKeyEdit; class AnimationBezierTrackEdit; class AnimationTrackEditGroup : public Control { @@ -415,6 +416,7 @@ class AnimationTrackEditor : public VBoxContainer { void _move_selection_cancel(); AnimationTrackKeyEdit *key_edit; + AnimationMultiTrackKeyEdit *multi_key_edit; void _update_key_edit(); void _clear_key_edit(); |