- Timestamp:
- May 26, 2011, 4:38:07 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation/src/orxonox/worldentities/pawns/SpaceShip.cc
r8597 r8607 248 248 void SpaceShip::rotatePitch(const Vector2& value) 249 249 { 250 this->localAngularAcceleration_.setX(this->localAngularAcceleration_.x() + value.x*0.8 );250 this->localAngularAcceleration_.setX(this->localAngularAcceleration_.x() + value.x*0.8f); 251 251 252 252 Pawn::rotatePitch(value); … … 375 375 { 376 376 for(unsigned int i=0; i<this->engineList_.size(); i++) 377 this->engineList_[i]-> ~Engine();377 this->engineList_[i]->destroy(); 378 378 } 379 379
Note: See TracChangeset
for help on using the changeset viewer.