Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 30, 2007, 5:02:18 PM (17 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/hbolt.cc

    r10368 r10505  
    5959  this->halo->setSize(.65, .65);
    6060  this->halo->setTexture("hbolt_halo2.png");
     61  this->halo->setVisibiliy(false);
    6162
    6263}
     
    8586void HBolt::activate()
    8687{
     88  this->halo->setVisibiliy(true);
    8789  this->origList = this->getOMListNumber();
    8890  this->toList(OM_ENVIRON);
     
    107109void HBolt::deactivate()
    108110{
     111  this->halo->setVisibiliy(false);
    109112  assert (HBolt::explosionParticles != NULL);
    110113  HBolt::explosionParticles->removeEmitter(this->emitter);
Note: See TracChangeset for help on using the changeset viewer.