Changeset 3860 in orxonox.OLD for orxonox/trunk/src/animation.h
- Timestamp:
- Apr 17, 2005, 6:20:02 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/animation.h
r3858 r3860 11 11 12 12 // FORWARD DEFINITION 13 14 #define DELTA_X 0.05 //!< the percentag of the distance that doesnt have to be done by neg_exp (asymptotical) ~ maschinendelta15 13 16 14 //! An enumerator of Functions to describe the flow of the Animation … … 47 45 * Animation Functions 48 46 * virtual tick 47 * addKeyFrame 49 48 * List of keyFrames 50 49 * currentKeyFrame/nextKeyFrame … … 73 72 BaseObject* getBaseObject(void) const {return baseObject;} 74 73 74 /** \returns if the Animation should be deleted */ 75 inline bool ifDelete(void) {return bDelete;} 76 75 77 protected: 76 78 Animation(void); … … 85 87 bool bHandled; //!< If this Animation is handled by the AnimationPlayer. 86 88 bool bRunning; //!< If the animation is running 87 //bool bDelete; //!< If true, the animation will be deleted through the AnimationPlayer.89 bool bDelete; //!< If true, the animation will be deleted through the AnimationPlayer. 88 90 }; 89 91
Note: See TracChangeset
for help on using the changeset viewer.