Changeset 10747 in orxonox.OLD for branches/presentation/src/world_entities/projectiles
- Timestamp:
- Jun 20, 2007, 10:10:43 PM (17 years ago)
- Location:
- branches/presentation/src/world_entities/projectiles
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/presentation/src/world_entities/projectiles/acid_splash.cc
r10740 r10747 90 90 void AcidSplash::activate() 91 91 { 92 this->origList = this->getOMListNumber();93 this->toList(OM_ENVIRON);92 // this->origList = this->getOMListNumber(); 93 // this->toList(OM_ENVIRON); 94 94 // this->unhide(); 95 95 this->grid->setVisibility(true); -
branches/presentation/src/world_entities/projectiles/hbolt.cc
r10740 r10747 48 48 this->loadModel("models/projectiles/hbolt.obj",1.1); 49 49 50 this->setMinEnergy( 10);50 this->setMinEnergy(7); 51 51 this->setHealthMax(0); 52 52 this->lifeSpan = 3.0; … … 96 96 { 97 97 this->halo->setVisibility(true); 98 this->origList = this->getOMListNumber();98 // this->origList = this->getOMListNumber(); 99 99 //this->toList(OM_ENVIRON); 100 100 if (unlikely(HBolt::explosionParticles == NULL)) -
branches/presentation/src/world_entities/projectiles/lbolt.cc
r10740 r10747 99 99 { 100 100 this->halo->setVisibility(true); 101 this->origList = this->getOMListNumber();102 this->toList(OM_ENVIRON);101 // this->origList = this->getOMListNumber(); 102 // this->toList(OM_ENVIRON); 103 103 if (unlikely(LBolt::explosionParticles == NULL)) 104 104 { -
branches/presentation/src/world_entities/projectiles/mbolt.cc
r10740 r10747 117 117 void MBolt::activate() 118 118 { 119 this->origList = this->getOMListNumber();120 this->toList(OM_ENVIRON);119 // this->origList = this->getOMListNumber(); 120 // this->toList(OM_ENVIRON); 121 121 if (unlikely(MBolt::explosionParticles == NULL)) 122 122 { -
branches/presentation/src/world_entities/projectiles/nadion_blast.cc
r10743 r10747 10 10 11 11 ### File Specific 12 main-programmer: Marc Schaerrer13 co-programmer: Benjamin Grauer12 main-programmer: Nicolas Schlumbegrer 13 co-programmer: .. 14 14 15 15 */ -
branches/presentation/src/world_entities/projectiles/plasma_pulse.cc
r10746 r10747 10 10 11 11 ### File Specific 12 main-programmer: Marc Schaerrer13 co-programmer: Benjamin Grauer, Nicolas Schlumberger12 main-programmer: Nicolas Schlumberger 13 co-programmer: 14 14 15 15 */ … … 40 40 41 41 42 this->setMinEnergy( 1);42 this->setMinEnergy(2); 43 43 this->setHealthMax(0); 44 44 this->lifeSpan = 2.0; … … 80 80 void PlasmaPulse::activate() 81 81 { 82 this->origList = this->getOMListNumber();82 // this->origList = this->getOMListNumber(); 83 83 this->grid->setVisibility(true); 84 84 // this->blink->setVisibility(true); -
branches/presentation/src/world_entities/projectiles/projectile.h
r10368 r10747 67 67 protected: 68 68 // energy 69 int origList; //!< FIXME currently a fix around the collision seg fault69 //int origList; //!< FIXME currently a fix around the collision seg fault 70 70 float energyMin; //!< The minimal Energy a Projectile needs to be emitted. 71 71 bool bChargeable; //!< if the Projectile is Charegeable -
branches/presentation/src/world_entities/projectiles/swarm_projectile.cc
r10698 r10747 69 69 70 70 71 this->origList = this->getOMListNumber();72 this->toList(OM_ENVIRON);71 // this->origList = this->getOMListNumber(); 72 // this->toList(OM_ENVIRON); 73 73 } 74 74 … … 97 97 void SwarmProjectile::activate() 98 98 { 99 this->toList(OM_ENVIRON);99 // this->toList(OM_ENVIRON); 100 100 if (unlikely(SwarmProjectile::explosionParticles == NULL)) 101 101 {
Note: See TracChangeset
for help on using the changeset viewer.