diff options
author | Juan Linietsky <juan@godotengine.org> | 2019-03-02 12:15:32 -0300 |
---|---|---|
committer | Juan Linietsky <juan@godotengine.org> | 2019-03-02 12:15:48 -0300 |
commit | c00429c33b4ebb541f77b41d5627508fdb7be0f6 (patch) | |
tree | 215c93f6bfd39fe7d557532d142ae730c339c6a0 /scene/animation | |
parent | 1b8f56c099cf0bdf8c209e7ebfcadcaa769989f2 (diff) |
Removed some prints
Diffstat (limited to 'scene/animation')
-rw-r--r-- | scene/animation/animation_player.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp index 43ec8cebb0..016db15b73 100644 --- a/scene/animation/animation_player.cpp +++ b/scene/animation/animation_player.cpp @@ -287,7 +287,6 @@ void AnimationPlayer::_ensure_node_caches(AnimationData *p_anim) { // broken track (nonexistent bone) p_anim->node_cache[i]->skeleton = NULL; p_anim->node_cache[i]->spatial = NULL; - printf("bone is %ls\n", String(bone_name).c_str()); ERR_CONTINUE(p_anim->node_cache[i]->bone_idx < 0); } } else { @@ -1133,8 +1132,6 @@ void AnimationPlayer::play_backwards(const StringName &p_name, float p_custom_bl void AnimationPlayer::play(const StringName &p_name, float p_custom_blend, float p_custom_scale, bool p_from_end) { - //printf("animation is %ls\n", String(p_name).c_str()); - //ERR_FAIL_COND(!is_inside_scene()); StringName name = p_name; if (String(name) == "") |