Changeset 10511 in orxonox.OLD for trunk/src/world_entities/projectiles
- Timestamp:
- Jan 30, 2007, 7:39:47 PM (18 years ago)
- Location:
- trunk/src/world_entities/projectiles
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/projectiles/acid_splash.cc
r10502 r10511 54 54 this->grid = new Wobblegrid( 5); 55 55 this->grid->setParent( this); 56 this->grid->setVisibili y(false);56 this->grid->setVisibility(false); 57 57 58 58 … … 99 99 this->toList(OM_ENVIRON); 100 100 // this->unhide(); 101 this->grid->setVisibili y(true);101 this->grid->setVisibility(true); 102 102 103 103 this->setPhysDamage(10); … … 112 112 113 113 // this->hide(); 114 this->grid->setVisibili y(false);114 this->grid->setVisibility(false); 115 115 this->lifeCycle = 0.0; 116 116 this->toList(OM_NULL); -
trunk/src/world_entities/projectiles/hbolt.cc
r10505 r10511 59 59 this->halo->setSize(.65, .65); 60 60 this->halo->setTexture("hbolt_halo2.png"); 61 this->halo->setVisibili y(false);61 this->halo->setVisibility(false); 62 62 63 63 } … … 86 86 void HBolt::activate() 87 87 { 88 this->halo->setVisibili y(true);88 this->halo->setVisibility(true); 89 89 this->origList = this->getOMListNumber(); 90 90 this->toList(OM_ENVIRON); … … 109 109 void HBolt::deactivate() 110 110 { 111 this->halo->setVisibili y(false);111 this->halo->setVisibility(false); 112 112 assert (HBolt::explosionParticles != NULL); 113 113 HBolt::explosionParticles->removeEmitter(this->emitter); -
trunk/src/world_entities/projectiles/lbolt.cc
r10505 r10511 62 62 this->halo->setSize(.35, .35); 63 63 this->halo->setTexture("hbolt_halo.png"); 64 this->halo->setVisibili y(false);64 this->halo->setVisibility(false); 65 65 66 66 … … 90 90 void LBolt::activate() 91 91 { 92 this->halo->setVisibili y(true);92 this->halo->setVisibility(true); 93 93 this->origList = this->getOMListNumber(); 94 94 this->toList(OM_ENVIRON); … … 115 115 assert (LBolt::explosionParticles != NULL); 116 116 LBolt::explosionParticles->removeEmitter(this->emitter); 117 this->halo->setVisibili y(false);117 this->halo->setVisibility(false); 118 118 this->lifeCycle = 0.0; 119 119 -
trunk/src/world_entities/projectiles/spike_ball.cc
r10505 r10511 60 60 this->halo->setSize(2, 2); 61 61 this->halo->setTexture("hbolt_halo.png"); 62 this->halo->setVisibili y(false);62 this->halo->setVisibility(false); 63 63 64 64 this->setFragments(26); … … 95 95 void SpikeBall::activate() 96 96 { 97 this->halo->setVisibili y(true);97 this->halo->setVisibility(true); 98 98 if (unlikely(SpikeBall::explosionParticles == NULL)) 99 99 { … … 142 142 void SpikeBall::deactivate() 143 143 { 144 this->halo->setVisibili y(false);144 this->halo->setVisibility(false); 145 145 assert (SpikeBall::explosionParticles != NULL); 146 146 //SpikeBall::explosionParticles->removeEmitter(this->emitter);
Note: See TracChangeset
for help on using the changeset viewer.