Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 19, 2006, 11:46:28 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: particle derivate… still working on this

File:
1 edited

Legend:

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

    r6619 r6621  
    2424
    2525#include "particle_emitter.h"
    26 #include "particle_system.h"
     26#include "sprite_particles.h"
    2727
    2828
     
    8181  if (unlikely(Rocket::trailParticles == NULL))
    8282  {
    83     Rocket::trailParticles = new ParticleSystem(2000, PARTICLE_SPRITE);
     83    Rocket::trailParticles = new SpriteParticles(2000);
    8484    Rocket::trailParticles->setName("RocketTrailParticles");
    8585    Rocket::trailParticles->setMaterialTexture("maps/radial-trans-noise.png");
     
    9696  if (unlikely(Rocket::explosionParticles == NULL))
    9797  {
    98     Rocket::explosionParticles = new ParticleSystem(200, PARTICLE_SPRITE);
     98    Rocket::explosionParticles = new SpriteParticles(200);
    9999    Rocket::explosionParticles->setName("RocketExplosionParticles");
    100100    Rocket::explosionParticles->setMaterialTexture("maps/radial-trans-noise.png");
Note: See TracChangeset for help on using the changeset viewer.