- Timestamp:
- Feb 7, 2006, 5:02:18 PM (19 years ago)
- Location:
- trunk/src/world_entities/projectiles
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/projectiles/guided_missile.cc
r7081 r7086 39 39 float modelSize = .3; 40 40 this->loadModel("models/projectiles/orx-rocket.obj", .3); 41 this->loadExplosionSound("sound/explosions/explosion_4.wav"); 42 41 43 42 44 this->setMinEnergy(1); … … 183 185 void GuidedMissile::destroy () 184 186 { 187 Projectile::destroy(); 185 188 PRINTF(5)("DESTROY GuidedMissile\n"); 186 189 this->lifeCycle = .95; //!< @todo calculate this usefully. -
trunk/src/world_entities/projectiles/hyperblast.cc
r7081 r7086 132 132 void Hyperblast::destroy () 133 133 { 134 Projectile::destroy(); 135 134 136 PRINTF(5)("DESTROY Hyperblast\n"); 135 137 -
trunk/src/world_entities/projectiles/laser.cc
r7077 r7086 133 133 void Laser::destroy () 134 134 { 135 Projectile::destroy(); 135 136 PRINTF(5)("DESTROY Laser\n"); 136 137 this->lifeCycle = .95; //!< @todo calculate this usefully. -
trunk/src/world_entities/projectiles/rocket.cc
r6825 r7086 155 155 void Rocket::destroy () 156 156 { 157 Projectile::destroy(); 158 157 159 PRINTF(5)("DESTROY Rocket\n"); 158 160 this->lifeCycle = .95; //!< @todo calculate this usefully.
Note: See TracChangeset
for help on using the changeset viewer.