Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 28, 2011, 4:43:18 PM (13 years ago)
Author:
simonmie
Message:

added nice particleEffect if shield is hit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gameimmersion/src/modules/weapons/projectiles/Projectile.cc

    r7284 r8152  
    103103            this->bDestroy_ = true;
    104104
     105            Pawn* victim = orxonox_cast<Pawn*>(otherObject);
     106
    105107            if (this->owner_)
    106108            {
     109                if (victim && !victim->hasShield())
    107110                {
    108111                    ParticleSpawner* effect = new ParticleSpawner(this->owner_->getCreator());
     
    113116                    effect->setLifetime(2.0f);
    114117                }
     118                if (victim && !victim->hasShield())
    115119                {
    116120                    ParticleSpawner* effect = new ParticleSpawner(this->owner_->getCreator());
     
    121125                    effect->setLifetime(3.0f);
    122126                }
     127                if (victim && victim->hasShield())
     128                {
     129                    ParticleSpawner* effect = new ParticleSpawner(this->owner_->getCreator());
     130                    effect->setPosition(this->getPosition());
     131                    effect->setOrientation(this->getOrientation());
     132                    effect->setDestroyAfterLife(true);
     133                    effect->setSource("Orxonox/engineglow");
     134                    effect->setLifetime(0.5f);
     135                }
    123136            }
    124137
    125             Pawn* victim = orxonox_cast<Pawn*>(otherObject);
    126138            if (victim)
    127139                victim->hit(this->owner_, contactPoint, this->damage_);
Note: See TracChangeset for help on using the changeset viewer.