Removed debug output.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@1327 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2007-12-09 07:14:53 +00:00
parent eaac399a09
commit 7e68fd5ddf
2 changed files with 2 additions and 6 deletions

View File

@ -42,7 +42,6 @@ void Explosion::init(sgCoord* coord)
setTransform(coord);
m_step = -1;
scene->add(this);
printf("explosion\n");
}
//-----------------------------------------------------------------------------

View File

@ -191,15 +191,12 @@ void Flyable::update (float dt)
btTransform trans=getBody()->getWorldTransform();
m_current_HAT = world->getHAT(trans.getOrigin());
m_HAT_counter = 0;
printf("pos: %f %f %f height %f min %f max %f\n",
trans.getOrigin().getX(),trans.getOrigin().getY(),trans.getOrigin().getZ(),
m_current_HAT, m_min_height, m_max_height);
if(m_current_HAT!=Physics::NOHIT)
{
if(m_current_HAT<m_min_height)
{printf("up \n");too_low(dt);}
too_low(dt);
else if(m_current_HAT>m_max_height)
{printf("down \n");too_high(dt);}
too_high(dt);
else
right_height(dt);
}