Changeset 4836 in orxonox.OLD for orxonox/trunk/src/util/animation/animation.cc
- Timestamp:
- Jul 12, 2005, 12:33:16 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/animation/animation.cc
r4746 r4836 21 21 22 22 /** 23 \briefcreates a new Animation23 * creates a new Animation 24 24 25 25 This also adds the Animation automatically to the AnimationPlayer's list … … 44 44 45 45 /** 46 \briefdestructs the Animation46 * destructs the Animation 47 47 48 48 this also takes the animation out of the AnimationPlayer's list (if it is there) … … 54 54 55 55 /** 56 \brieftells the AnimationPlayer, that we do not wish to handle this animation56 * tells the AnimationPlayer, that we do not wish to handle this animation 57 57 automatically. 58 58 … … 66 66 67 67 /** 68 \briefSets the infinitymode69 \param postInfinity How the Animation should advance after the last Keyframe68 * Sets the infinitymode 69 * @param postInfinity How the Animation should advance after the last Keyframe 70 70 */ 71 71 void Animation::setInfinity(ANIM_INFINITY postInfinity) … … 75 75 76 76 /** 77 \briefhandles the Animation if it gets out of boundraries eg. if animation is finished.77 * handles the Animation if it gets out of boundraries eg. if animation is finished. 78 78 */ 79 79 void Animation::handleInfinity() … … 99 99 100 100 /** 101 \briefplays the animation back from the current Time forward101 * plays the animation back from the current Time forward 102 102 */ 103 103 void Animation::play() … … 108 108 109 109 /** 110 \briefplays the Next n keyframes111 \param n the Count of keyFrames to play.110 * plays the Next n keyframes 111 * @param n the Count of keyFrames to play. 112 112 */ 113 113 void Animation::playNextKeyframes(int n) … … 118 118 119 119 /** 120 \briefStops the animation. eg. pause(); rewind();120 * Stops the animation. eg. pause(); rewind(); 121 121 */ 122 122 void Animation::stop() … … 130 130 131 131 /** 132 \briefPauses the animation. Stays at the current Time132 * Pauses the animation. Stays at the current Time 133 133 */ 134 134 void Animation::pause() … … 138 138 139 139 /** 140 \briefreplays the animation, eg. rewind();play();140 * replays the animation, eg. rewind();play(); 141 141 */ 142 142 void Animation::replay()
Note: See TracChangeset
for help on using the changeset viewer.