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/test_bullet.cc

    r6619 r6621  
    2424
    2525#include "particle_emitter.h"
    26 #include "particle_system.h"
     26#include "sprite_particles.h"
    2727
    2828
     
    8181  if (unlikely(TestBullet::trailParticles == NULL))
    8282  {
    83     TestBullet::trailParticles = new ParticleSystem(1000, PARTICLE_SPRITE);
     83    TestBullet::trailParticles = new SpriteParticles(1000);
    8484    TestBullet::trailParticles->setName("TestBulletTrailParticles");
    8585    TestBullet::trailParticles->setLifeSpan(.5, .3);
     
    9393  if (unlikely(TestBullet::explosionParticles == NULL))
    9494  {
    95     TestBullet::explosionParticles = new ParticleSystem(1000, PARTICLE_SPRITE);
     95    TestBullet::explosionParticles = new SpriteParticles(1000);
    9696    TestBullet::explosionParticles->setName("TestBulletExplosionParticles");
    9797    TestBullet::explosionParticles->setLifeSpan(.5, .3);
Note: See TracChangeset for help on using the changeset viewer.