Changeset 9357 in orxonox.OLD for branches/proxy/src/util/animation
- Timestamp:
- Jul 20, 2006, 2:33:37 PM (18 years ago)
- Location:
- branches/proxy/src/util/animation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/util/animation/animation3d.cc
r5115 r9357 25 25 #include "p_node.h" 26 26 27 using namespace std; 27 28 28 29 29 /** -
branches/proxy/src/util/animation/animation_player.cc
r5777 r9357 20 20 #include "compiler.h" 21 21 22 using namespace std; 22 23 23 24 24 … … 100 100 { 101 101 // iterate through all the animations and tick them. 102 list<Animation*>::iterator anim;102 std::list<Animation*>::iterator anim; 103 103 for (anim = this->animationList.begin(); anim != this->animationList.end(); anim++) 104 104 { … … 135 135 Animation* AnimationPlayer::getAnimationFromBaseObject(const BaseObject* baseObject) const 136 136 { 137 list<Animation*>::const_iterator anim;137 std::list<Animation*>::const_iterator anim; 138 138 for (anim = this->animationList.begin(); anim != this->animationList.end(); anim++) 139 139 if((*anim)->getBaseObject() == baseObject) … … 156 156 PRINT(0)("-Animation Information---------------+\n"); 157 157 // Per ANIMATION DEBUG 158 list<Animation*>::iterator anim;158 std::list<Animation*>::iterator anim; 159 159 for (anim = this->animationList.begin(); anim != this->animationList.end(); anim++) 160 160 {
Note: See TracChangeset
for help on using the changeset viewer.