diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2023-08-21 19:51:54 +0200 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2024-06-13 09:37:47 +0200 |
commit | 9ba984e2c14c4a5f6464e828f9e2f9b8e4bb73ea (patch) | |
tree | 1c2403d4d3c16e6a6c5d08d8dc470afcd6426280 /editor/animation_track_editor.h | |
parent | 5708a3a02e00061e03366f2dabf8942df66fedca (diff) | |
download | redot-engine-9ba984e2c14c4a5f6464e828f9e2f9b8e4bb73ea.tar.gz |
Simplify right-click track insertion code
Diffstat (limited to 'editor/animation_track_editor.h')
-rw-r--r-- | editor/animation_track_editor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/animation_track_editor.h b/editor/animation_track_editor.h index f449b51b81..ac818242aa 100644 --- a/editor/animation_track_editor.h +++ b/editor/animation_track_editor.h @@ -464,6 +464,7 @@ class AnimationTrackEditor : public VBoxContainer { Animation::TrackType type; NodePath path; int track_idx = 0; + float time = FLT_MAX; // Defaults to current timeline position. Variant value; String query; bool advance = false; |