summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
authorMax Hilbrunner <mhilbrunner@users.noreply.github.com>2018-07-05 04:25:04 +0200
committerGitHub <noreply@github.com>2018-07-05 04:25:04 +0200
commit9f82368d40f1948de708804645374ea02ca6e7db (patch)
tree6da3d964c79bdd7c15ebd0e18fc4b998611845ed /scene
parentc488a74e0c9d56975d5b23e5bff5ca2341f80036 (diff)
parent02181292b8976c4edf99fd7d74622423fc4da017 (diff)
Merge pull request #19475 from YeldhamDev/animplayer_cosmetic
Minor changes to the AnimationPlayer editor
Diffstat (limited to 'scene')
-rw-r--r--scene/resources/animation.cpp1
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);