Changeset 660 for code/branches/FICN/src/orxonox
- Timestamp:
- Dec 20, 2007, 4:26:02 PM (17 years ago)
- Location:
- code/branches/FICN/src/orxonox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/hud/HUD.cc
r659 r660 178 178 rocketNum4_ = OverlayManager::getSingleton().getOverlayElement("Orxonox/HUD1.2/RocketNum4"); 179 179 180 // FIXME: unused vars! 180 181 float energyDistrPixelX_ = 100; 181 182 float energyDistrPixelY_ = 86; -
code/branches/FICN/src/orxonox/objects/Camera.cc
r618 r660 62 62 sceneNode->attachObject((Ogre::MovableObject*)cam); 63 63 64 64 // FIXME: unused var 65 65 Ogre::Viewport* vp = orxonox::Orxonox::getSingleton()->getOgrePointer()->getRoot()->getAutoCreatedWindow()->addViewport(cam); 66 66 -
code/branches/FICN/src/orxonox/objects/Projectile.cc
r646 r660 50 50 if (this->getPosition().squaredDistance(it->getPosition()) <= (radius*radius)) 51 51 { 52 Explosion* e plosion = new Explosion(this);52 Explosion* explosion = new Explosion(this); 53 53 delete this; 54 54 return; -
code/branches/FICN/src/orxonox/objects/SpaceShip.cc
r647 r660 347 347 if (this->bLMousePressed_ && this->timeToReload_ <= 0) 348 348 { 349 // FIXME, unused var; try recycling of projectiles 349 350 Projectile* proj = new Projectile(this); 350 351 this->timeToReload_ = this->reloadTime_; -
code/branches/FICN/src/orxonox/objects/weapon_system/ammunition_dump.cc
r637 r660 106 106 { 107 107 int id = Orxonox::getSingleton()->getBulletMgr()->getAmmunitionID(name); 108 if (id = -1) 108 // FIXME changed = to ==, check if correct 109 if (id == -1) 109 110 return -1; 110 111 return stock_[id];
Note: See TracChangeset
for help on using the changeset viewer.