Changeset 5894 in orxonox.OLD for branches/spaceshipcontrol/src/world_entities/space_ships
- Timestamp:
- Dec 3, 2005, 4:47:34 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/spaceshipcontrol/src/world_entities/space_ships/space_ship.cc
r5893 r5894 108 108 109 109 PRINTF(4)("SPACESHIP INIT\n"); 110 travelSpeed = 1 5.0;110 travelSpeed = 100.0; 111 111 bUp = bDown = bLeft = bRight = bAscend = bDescend = false; 112 112 bFire = false; 113 acceleration = 10.0;113 acceleration = 50.0; 114 114 115 115 // GLGuiButton* button = new GLGuiPushButton(); … … 127 127 registerEvent(KeyMapper::PEV_PREVIOUS_WEAPON); 128 128 registerEvent(SDLK_PAGEUP); 129 registerEvent( 129 registerEvent(SDLK_PAGEDOWN); 130 130 131 131 this->getWeaponManager()->setSlotCount(7); … … 276 276 //orthDirection = orthDirection.cross (direction); 277 277 278 if( this->bUp && this->getRelCoor().x < 20)278 if( this->bUp) 279 279 accel += direction; 280 if( this->bDown && this->getRelCoor().x > -5)280 if( this->bDown) 281 281 accel -= direction; 282 282
Note: See TracChangeset
for help on using the changeset viewer.