Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 14, 2008, 7:20:00 PM (16 years ago)
Author:
landauf
Message:
  • added thruster flares
  • used new particle effects
  • enemies with less health emit smoke and fire

!!!! MEDIA UPDATE !!!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/objects/Projectile.cc

    r1576 r1602  
    5050
    5151        this->setConfigValues();
    52         this->explosionTemplateName_ = "Orxonox/explosion1";
    53         this->smokeTemplateName_ = "Orxonox/smoke3";
     52        this->explosionTemplateName_ = "Orxonox/explosion3";
     53        this->smokeTemplateName_ = "Orxonox/smoke4";
    5454
    5555        if (this->owner_)
     
    101101                    explosion->setPosition(this->getPosition());
    102102                    explosion->create();
    103                     ParticleSpawner* smoke = new ParticleSpawner(this->smokeTemplateName_, LODParticle::normal, 6.0, 0.0);
     103                    ParticleSpawner* smoke = new ParticleSpawner(this->smokeTemplateName_, LODParticle::normal, 2.0, 0.0);
    104104                    smoke->setPosition(this->getPosition());
    105                     smoke->getParticleInterface()->setSpeedFactor(3.0);
     105//                    smoke->getParticleInterface()->setSpeedFactor(3.0);
    106106                    smoke->create();
    107107                    delete this;
Note: See TracChangeset for help on using the changeset viewer.