Changeset 5883 in orxonox.OLD for branches/spaceshipcontrol/src
- Timestamp:
- Dec 3, 2005, 2:01:15 AM (19 years ago)
- Location:
- branches/spaceshipcontrol/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/spaceshipcontrol/src/world_entities/player.cc
r5881 r5883 62 62 63 63 void Player::setControllable(Playable* controllalble) 64 64 { 65 65 66 67 66 this->controllable = controllalble; 67 this->controllable->subscribeEvents(this); 68 68 69 69 } 70 70 71 71 -
branches/spaceshipcontrol/src/world_entities/space_ships/space_ship.cc
r5881 r5883 266 266 accel -= direction; 267 267 268 if( this->bLeft > -this->getRelCoor().z*2)268 if( this->bLeft /* > -this->getRelCoor().z*2*/) 269 269 { 270 270 accel -=(orthDirection); … … 272 272 rotVal -= .4; 273 273 } 274 if( this->bRight > this->getRelCoor().z*2)274 if( this->bRight /* > this->getRelCoor().z*2*/) 275 275 { 276 276 accel += orthDirection;
Note: See TracChangeset
for help on using the changeset viewer.