Changeset 8316 in orxonox.OLD for trunk/src/world_entities/space_ships
- Timestamp:
- Jun 11, 2006, 1:57:27 PM (19 years ago)
- Location:
- trunk/src/world_entities/space_ships
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/space_ships/hover.cc
r7954 r8316 175 175 this->getWeaponManager().getFixedTarget()->setParent(&this->cameraNode); 176 176 this->getWeaponManager().getFixedTarget()->setRelCoor(1000,0,0); 177 177 178 178 // NETWORK THINGS 179 179 180 180 registerVar( new SynchronizeableBool( &bForward, &bForward, "bForward", PERMISSION_OWNER ) ); 181 181 registerVar( new SynchronizeableBool( &bBackward, &bBackward, "bBackward", PERMISSION_OWNER ) ); … … 184 184 registerVar( new SynchronizeableBool( &bAscend, &bAscend, "bAscend", PERMISSION_OWNER ) ); 185 185 registerVar( new SynchronizeableBool( &bDescend, &bDescend, "bDescend", PERMISSION_OWNER ) ); 186 186 187 187 registerVar( new SynchronizeableFloat( &rotation, &rotation, "rotation", PERMISSION_OWNER ) ); 188 188 } … … 262 262 { 263 263 Vector accel(0.0, 0.0, 0.0); 264 float rotSpeed = .3;265 264 266 265 if( this->bForward ) -
trunk/src/world_entities/space_ships/turbine_hover.cc
r7868 r8316 297 297 { 298 298 Vector accel(0.0, 0.0, 0.0); 299 float rotSpeed = .3;300 299 301 300 if( this->bForward ) … … 416 415 } 417 416 break; 417 default: 418 PRINTF(2)("Playmode %s Not Implemented\n", Playable::playmodeToString(this->getPlaymode()).c_str()); 418 419 } 419 420 }
Note: See TracChangeset
for help on using the changeset viewer.