Changeset 10601 in orxonox.OLD for branches/cleanup/src/world_entities/projectiles
- Timestamp:
- Mar 23, 2007, 12:21:42 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/cleanup/src/world_entities/projectiles/swarm_projectile.cc
r10579 r10601 60 60 //this->trail->setParent( this); 61 61 this->trail->setTexture( "textures/laser.png"); 62 63 this->maxVelocity = 300; 64 65 this->rotationSpeed = 360; 66 this->angle = 0; 62 67 63 68 … … 216 221 217 222 this->angle += this->rotationSpeed * time; 223 218 224 while (this->angle > 360) 225 { 219 226 this->angle -= 360; 227 } 220 228 221 229 this->lastDir = this->curDir;
Note: See TracChangeset
for help on using the changeset viewer.