Changeset 7348 in orxonox.OLD for trunk/src/world_entities
- Timestamp:
- Apr 19, 2006, 2:55:29 PM (19 years ago)
- Location:
- trunk/src/world_entities/space_ships
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/space_ships/turbine_hover.cc
r7346 r7348 220 220 void TurbineHover::loadParams(const TiXmlElement* root) 221 221 { 222 WorldEntity::loadParams(root); 223 } 224 222 Playable::loadParams(root); 223 } 224 225 void TurbineHover::setPlayDirection(const Quaternion& rot, float speed) 226 { 227 this->direction = Quaternion (rot.getHeading(), Vector(0,1,0)); 228 } 225 229 226 230 void TurbineHover::enter() -
trunk/src/world_entities/space_ships/turbine_hover.h
r7346 r7348 22 22 23 23 virtual void loadParams(const TiXmlElement* root); 24 virtual void setPlayDirection(const Quaternion& rot, float speed = 0.0f) {/* FIXME */};24 virtual void setPlayDirection(const Quaternion& rot, float speed = 0.0f); 25 25 virtual void enter(); 26 26 virtual void leave();
Note: See TracChangeset
for help on using the changeset viewer.