diff --git a/src/animations/three_d_animation.cpp b/src/animations/three_d_animation.cpp index 65ff5a9f5..0297c59ac 100644 --- a/src/animations/three_d_animation.cpp +++ b/src/animations/three_d_animation.cpp @@ -126,7 +126,6 @@ void ThreeDAnimation::update(float dt) core::vector3df hpr = m_animated_node->getRotation(); core::vector3df scale = m_animated_node->getScale(); AnimationBase::update(dt, &xyz, &hpr, &scale); //updates all IPOs - printf("xyz = %f %f %f\n", xyz.X, xyz.Y, xyz.Z); m_animated_node->setPosition(xyz); m_animated_node->setRotation(hpr); m_animated_node->setScale(scale);