Changeset 128 for code/branches/main_reto/include
- Timestamp:
- Oct 30, 2007, 11:43:48 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/main_reto/include/OrxonoxShip.h
r127 r128 12 12 virtual ~OrxonoxShip(); 13 13 14 /*void setThrust(float); 15 void setSideThrust(float);*/ 14 virtual bool initialise(); 16 15 17 virtual bool initialise(); 16 void setThrust(const Real); 17 void setSideThrust(const Real); 18 void setYaw(const Radian); 19 void setPitch(const Radian); 20 void setRoll(const Radian); 21 22 bool tick(unsigned long, float); 18 23 19 24 protected: … … 21 26 SceneNode *mRootNode; 22 27 Entity *mShip; 28 29 Vector3 speed; 30 float thrust, sideThrust, baseThrust; 23 31 }; 24 32
Note: See TracChangeset
for help on using the changeset viewer.