Changeset 10078 in orxonox.OLD for branches/playability/src/world_entities/space_ships
- Timestamp:
- Dec 14, 2006, 10:58:41 AM (18 years ago)
- Location:
- branches/playability/src/world_entities/space_ships
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/playability/src/world_entities/space_ships/space_ship.cc
r10073 r10078 377 377 this->secWeaponMan.showCrosshair(); 378 378 this->toList( OM_GROUP_01 ); 379 /*for(ObjectList<WorldEntity>::const_iterator it = WorldEntity::objectList().begin(); it != WorldEntity::objectList().end(); it++) 380 { 381 (*it)->toList( OM_GROUP_01); 382 }*/ 379 383 //dynamic_cast<Element2D*>(this->secWeaponMan.getFixedTarget())->setVisibility( true); 380 384 //this->attachCamera(); … … 386 390 this->secWeaponMan.hideCrosshair(); 387 391 this->toList( OM_GROUP_00); 392 /*for(ObjectList<WorldEntity>::const_iterator it = WorldEntity::objectList().begin(); it != WorldEntity::objectList().end(); it++) 393 { 394 (*it)->toList( OM_GROUP_00); 395 }*/ 388 396 //dynamic_cast<Element2D*>(this->secWeaponMan.getFixedTarget())->setVisibility( false); 389 397 //this->detachCamera(); … … 611 619 612 620 this->toList( OM_DEAD); 621 /*for(ObjectList<WorldEntity>::const_iterator it = WorldEntity::objectList().begin(); it != WorldEntity::objectList().end(); it++) 622 { 623 (*it)->toList( OM_DEAD); 624 }*/ 613 625 PRINTF(0)("spaceship destroy == ship translated \n"); 614 626 } -
branches/playability/src/world_entities/space_ships/space_ship.h
r10073 r10078 147 147 148 148 Vector velocity; //!< the velocity of the player. 149 Vector oldPos; 149 150 150 151 // 2D-traveling
Note: See TracChangeset
for help on using the changeset viewer.