Changeset 6871 in orxonox.OLD for trunk/src/world_entities/space_ships
- Timestamp:
- Jan 30, 2006, 9:39:58 PM (19 years ago)
- Location:
- trunk/src/world_entities/space_ships
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/space_ships/helicopter.cc
r6805 r6871 213 213 } 214 214 215 void Helicopter::attachCamera() 216 { 215 void Helicopter::enter() 216 { 217 dynamic_cast<Element2D*>(this->getWeaponManager()->getFixedTarget())->setVisibility( true); 217 218 State::getCamera()->setParentSoft(this->getWeaponManager()->getFixedTarget()); 218 219 State::getCameraTarget()->setParentSoft(this->getWeaponManager()->getFixedTarget()); 219 220 }221 222 223 void Helicopter::enter()224 {225 dynamic_cast<Element2D*>(this->getWeaponManager()->getFixedTarget())->setVisibility( true);226 this->attachCamera();227 228 229 220 } 230 221 -
trunk/src/world_entities/space_ships/helicopter.h
r6805 r6871 25 25 virtual void enter(); 26 26 virtual void leave(); 27 virtual void attachCamera();28 27 29 28 virtual void postSpawn(); -
trunk/src/world_entities/space_ships/hover.cc
r6824 r6871 39 39 */ 40 40 Hover::~Hover () 41 {} 41 { 42 43 } 42 44 43 45 /** … … 185 187 } 186 188 187 void Hover::attachCamera() 188 { 189 190 void Hover::enter() 191 { 192 dynamic_cast<Element2D*>(this->getWeaponManager()->getFixedTarget())->setVisibility( true); 193 189 194 State::getCamera()->setParentSoft(&this->cameraNode); 190 195 State::getCamera()->setRelCoorSoft(-10, 0,0); 191 196 State::getCameraTarget()->setParentSoft(&this->cameraNode); 192 }193 194 195 void Hover::enter()196 {197 dynamic_cast<Element2D*>(this->getWeaponManager()->getFixedTarget())->setVisibility( true);198 this->attachCamera();199 200 201 197 } 202 198 -
trunk/src/world_entities/space_ships/hover.h
r6807 r6871 22 22 virtual void enter(); 23 23 virtual void leave(); 24 virtual void attachCamera();25 24 26 25 virtual void postSpawn();
Note: See TracChangeset
for help on using the changeset viewer.