Changeset 643 for code/branches/FICN/src/orxonox/objects/WorldEntity.cc
- Timestamp:
- Dec 19, 2007, 2:41:01 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/objects/WorldEntity.cc
r637 r643 75 75 { 76 76 this->velocity_ += (dt * this->acceleration_); 77 this->translate(dt * this->velocity_ );77 this->translate(dt * this->velocity_, Ogre::Node::TS_LOCAL); 78 78 79 79 this->rotationRate_ += (dt * this->momentum_); … … 151 151 152 152 create(); 153 153 154 154 } 155 155 … … 158 158 return true; 159 159 } 160 160 161 161 void WorldEntity::registerAllVariables() 162 162 {
Note: See TracChangeset
for help on using the changeset viewer.