Changeset 8838 in orxonox.OLD for branches/multi_player_map/src/world_entities
- Timestamp:
- Jun 28, 2006, 12:44:07 AM (19 years ago)
- Location:
- branches/multi_player_map/src/world_entities
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/multi_player_map/src/world_entities/playable.cc
r8827 r8838 65 65 66 66 this->bDead = false; 67 67 68 68 this->subscribeReaction(CREngine::CR_PHYSICS_GROUND_WALK, CL_BSP_ENTITY); 69 69 -
branches/multi_player_map/src/world_entities/space_ships/space_ship.cc
r8827 r8838 220 220 this->burstSystem->setColor(0.5, .5,.5,.8,.8); 221 221 this->burstSystem->setColor(1.0, .8,.8,.8,.0); 222 222 223 223 registerVar( new SynchronizeableVector( &velocity, &velocity, "velocity" ) ); 224 224 registerVar( new SynchronizeableQuaternion( &mouseDir, &mouseDir, "mousedir", PERMISSION_OWNER ) ); … … 511 511 void SpaceShip::respawn( ) 512 512 { 513 toList( OM_PLAYERS ); 514 } 515 516 517 518 513 if( this->uniqueID %2) 514 toList( OM_GROUP_00 ); 515 else 516 toList(OM_GROUP_01); 517 } 518 519 520 521 -
branches/multi_player_map/src/world_entities/world_entity.cc
r8832 r8838 412 412 bool WorldEntity::registerCollision(WorldEntity* entityA, WorldEntity* entityB, BoundingVolume* bvA, BoundingVolume* bvB) 413 413 { 414 PRINTF(0)("registering collision\n\n\n\n"); 414 415 // is there any handler listening? 415 416 if( !this->bReactive) … … 833 834 loadModel( modelFileName, scaling ); 834 835 } 835 836 836 837 if ( std::find( id.begin(), id.end(), list_handle ) != id.end() ) 837 838 {
Note: See TracChangeset
for help on using the changeset viewer.