Changeset 3750 in orxonox.OLD for orxonox/trunk/src/simple_animation.h
- Timestamp:
- Apr 7, 2005, 7:37:25 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/simple_animation.h
r3744 r3750 42 42 */ 43 43 typedef struct Animation { 44 44 45 WorldEntity* object; 46 Vector* lastPosition; 47 Vector* tmpVect; 48 float deltaT; 49 float localTime; 50 51 tList<KeyFrame>* frames; 45 52 KeyFrame* currentFrame; 46 53 KeyFrame* lastFrame; 47 Vector* lastPosition; 48 Vector* tmpVect;49 tList<KeyFrame>* frames; 54 55 bool bRunning; 56 50 57 animationMode animMode; 51 58 movementMode movMode; 52 bool bRunning;53 float deltaT;54 float localTime;55 59 }; 56 60
Note: See TracChangeset
for help on using the changeset viewer.