Changeset 10219 for code/branches/presentationHS14/src/modules
- Timestamp:
- Jan 31, 2015, 11:54:35 PM (10 years ago)
- Location:
- code/branches/presentationHS14/src/modules
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentationHS14/src/modules/dodgerace2/DodgeRace.cc
r10176 r10219 98 98 getPlayer()->speed = 830 - (point / 1000); 99 99 100 for(u int i=0; i < cubeList.size();i++)100 for(unsigned int i=0; i < cubeList.size();i++) 101 101 { 102 102 if(cubeList.at(i)->getPosition().x < currentPosition-3000) … … 169 169 orxout() << "start" << endl; 170 170 init(); 171 for(u int i=0; i< cubeList.size();i++)171 for(unsigned int i=0; i< cubeList.size();i++) 172 172 { 173 173 cubeList.at(i)->destroy(); -
code/branches/presentationHS14/src/modules/towerdefense/TowerDefenseTower.cc
r10181 r10219 40 40 void TowerDefenseTower::setOrientation(const Quaternion& orientation) 41 41 { 42 static int ori;43 //orxout() << "orientation " << ++ori << endl;44 42 } 45 43 46 44 void TowerDefenseTower::rotateYaw(const Vector2& value) 47 45 { 48 static int yaw;49 //orxout() << "rotateYaw " << ++yaw << endl;50 46 } 51 47 52 48 void TowerDefenseTower::rotatePitch(const Vector2& value) 53 49 { 54 static int pitch;55 //orxout() << "rotatePitch " << ++pitch << endl;56 50 } 57 51 58 52 void TowerDefenseTower::rotateRoll(const Vector2& value) 59 53 { 60 static int roll;61 //orxout() << "rotateRoll" << ++roll << endl;62 54 } 63 55
Note: See TracChangeset
for help on using the changeset viewer.