diff options
author | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2018-06-09 15:49:16 -0300 |
---|---|---|
committer | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2018-06-30 00:12:05 -0300 |
commit | 02181292b8976c4edf99fd7d74622423fc4da017 (patch) | |
tree | 675c5532e19553b79ddc5ea8a4b2207e309a7a1a /scene | |
parent | 22dac831bc1fd53de50900fc271c5ac8f7682dcb (diff) |
Minor changes to the AnimationPlayer editor.
Diffstat (limited to 'scene')
-rw-r--r-- | scene/resources/animation.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scene/resources/animation.cpp b/scene/resources/animation.cpp index 3185fb6768..e57a2b68c8 100644 --- a/scene/resources/animation.cpp +++ b/scene/resources/animation.cpp @@ -2363,7 +2363,6 @@ float Animation::bezier_track_interpolate(int p_track, float p_time) const { int Animation::audio_track_insert_key(int p_track, float p_time, const RES &p_stream, float p_start_offset, float p_end_offset) { - print_line("really insert key? "); ERR_FAIL_INDEX_V(p_track, tracks.size(), -1); Track *t = tracks[p_track]; ERR_FAIL_COND_V(t->type != TYPE_AUDIO, -1); |