Added (usually commented out) settings for a debug camera, which shows the track from

high above, which is useful for debugging AI behaviour.


git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/irrlicht@4211 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk
2009-11-08 12:13:50 +00:00
parent 0bc8235c35
commit dfc170e448

View File

@@ -238,6 +238,15 @@ void Camera::update(float dt)
m_camera->setPosition(m_temp_position.toIrrVector());
m_camera->setTarget(m_temp_target.toIrrVector());
// The following settings give a debug camera which shows the track from
// high above the kart straight down.
#undef DEBUG_CAMERA
#ifdef DEBUG_CAMERA
core::vector3df xyz = RaceManager::getKart(0)->getXYZ().toIrrVector();
m_camera->setTarget(xyz);
xyz.Y = xyz.Y+30;
m_camera->setPosition(xyz);
#endif
if(race_manager->getNumLocalPlayers() < 2)
sound_manager->positionListener(m_temp_position, m_temp_target - m_temp_position);