Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10511 in orxonox.OLD for trunk/src/world_entities/projectiles


Ignore:
Timestamp:
Jan 30, 2007, 7:39:47 PM (18 years ago)
Author:
snellen
Message:

corrected typo in worldentity → setVisibiliy to setVisibility

Location:
trunk/src/world_entities/projectiles
Files:
4 edited

Legend:

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

    r10502 r10511  
    5454  this->grid = new Wobblegrid( 5);
    5555  this->grid->setParent( this);
    56   this->grid->setVisibiliy(false);
     56  this->grid->setVisibility(false);
    5757
    5858
     
    9999  this->toList(OM_ENVIRON);
    100100 // this->unhide();
    101   this->grid->setVisibiliy(true);
     101  this->grid->setVisibility(true);
    102102
    103103  this->setPhysDamage(10);
     
    112112
    113113 // this->hide();
    114   this->grid->setVisibiliy(false);
     114  this->grid->setVisibility(false);
    115115  this->lifeCycle = 0.0;
    116116  this->toList(OM_NULL);
  • trunk/src/world_entities/projectiles/hbolt.cc

    r10505 r10511  
    5959  this->halo->setSize(.65, .65);
    6060  this->halo->setTexture("hbolt_halo2.png");
    61   this->halo->setVisibiliy(false);
     61  this->halo->setVisibility(false);
    6262
    6363}
     
    8686void HBolt::activate()
    8787{
    88   this->halo->setVisibiliy(true);
     88  this->halo->setVisibility(true);
    8989  this->origList = this->getOMListNumber();
    9090  this->toList(OM_ENVIRON);
     
    109109void HBolt::deactivate()
    110110{
    111   this->halo->setVisibiliy(false);
     111  this->halo->setVisibility(false);
    112112  assert (HBolt::explosionParticles != NULL);
    113113  HBolt::explosionParticles->removeEmitter(this->emitter);
  • trunk/src/world_entities/projectiles/lbolt.cc

    r10505 r10511  
    6262  this->halo->setSize(.35, .35);
    6363  this->halo->setTexture("hbolt_halo.png");
    64   this->halo->setVisibiliy(false);
     64  this->halo->setVisibility(false);
    6565
    6666
     
    9090void LBolt::activate()
    9191{
    92   this->halo->setVisibiliy(true);
     92  this->halo->setVisibility(true);
    9393  this->origList = this->getOMListNumber();
    9494  this->toList(OM_ENVIRON);
     
    115115  assert (LBolt::explosionParticles != NULL);
    116116  LBolt::explosionParticles->removeEmitter(this->emitter);
    117   this->halo->setVisibiliy(false);
     117  this->halo->setVisibility(false);
    118118  this->lifeCycle = 0.0;
    119119
  • trunk/src/world_entities/projectiles/spike_ball.cc

    r10505 r10511  
    6060  this->halo->setSize(2, 2);
    6161  this->halo->setTexture("hbolt_halo.png");
    62   this->halo->setVisibiliy(false);
     62  this->halo->setVisibility(false);
    6363
    6464  this->setFragments(26);
     
    9595void SpikeBall::activate()
    9696{
    97   this->halo->setVisibiliy(true);
     97  this->halo->setVisibility(true);
    9898  if (unlikely(SpikeBall::explosionParticles == NULL))
    9999  {
     
    142142void SpikeBall::deactivate()
    143143{
    144   this->halo->setVisibiliy(false);
     144  this->halo->setVisibility(false);
    145145  assert (SpikeBall::explosionParticles != NULL);
    146146  //SpikeBall::explosionParticles->removeEmitter(this->emitter);
Note: See TracChangeset for help on using the changeset viewer.