Changeset 6691 in orxonox.OLD for branches/spaceshipcontrol
- Timestamp:
- Jan 25, 2006, 2:07:01 PM (19 years ago)
- Location:
- branches/spaceshipcontrol/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/spaceshipcontrol/src/lib/event/event_handler.cc
r6624 r6691 262 262 SDL_WM_GrabInput(SDL_GRAB_OFF); 263 263 else 264 ;//SDL_WM_GrabInput(SDL_GRAB_ON);264 SDL_WM_GrabInput(SDL_GRAB_ON); 265 265 } 266 266 -
branches/spaceshipcontrol/src/world_entities/projectiles/laser.cc
r6622 r6691 26 26 #include "particle_emitter.h" 27 27 #include "sprite_particles.h" 28 #include <cassert> 28 29 29 30 -
branches/spaceshipcontrol/src/world_entities/space_ships/space_ship.cc
r6637 r6691 134 134 yInvert = 1; 135 135 mouseSensitivity = 0.001; 136 airViscosity = 0.0 1;136 airViscosity = 0.05; 137 137 controlVelocityX = 25; 138 138 controlVelocityY = 150; … … 323 323 324 324 //other physics (gravity) 325 if(travelSpeed < 120)326 move += Vector(0,-1,0)*60*time + Vector(0,1,0)*travelSpeed/2*time;325 //if(travelSpeed < 120) 326 //move += Vector(0,-1,0)*60*time + Vector(0,1,0)*travelSpeed/2*time; 327 327 328 328 //hoover effect
Note: See TracChangeset
for help on using the changeset viewer.