Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 30, 2007, 5:02:18 PM (18 years ago)
Author:
snellen
Message:

lbolt,hbolt,spikeball: set visibility false in constructor. the acid splash works so far, all the other projectiles need testing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/projectiles/lbolt.cc

    r10368 r10505  
    6262  this->halo->setSize(.35, .35);
    6363  this->halo->setTexture("hbolt_halo.png");
     64  this->halo->setVisibiliy(false);
    6465
    6566
     
    8990void LBolt::activate()
    9091{
     92  this->halo->setVisibiliy(true);
    9193  this->origList = this->getOMListNumber();
    9294  this->toList(OM_ENVIRON);
     
    113115  assert (LBolt::explosionParticles != NULL);
    114116  LBolt::explosionParticles->removeEmitter(this->emitter);
     117  this->halo->setVisibiliy(false);
    115118  this->lifeCycle = 0.0;
    116119
Note: See TracChangeset for help on using the changeset viewer.