Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 23, 2005, 2:27:17 AM (19 years ago)
Author:
bensch
Message:

orxonox/branches/particleEngine: particles get deleted after theit life is over

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/particleEngine/src/lib/graphics/particles/particle_system.h

    r3932 r3934  
    4444
    4545 public:
    46   ParticleSystem(unsigned int particleCount = PARTICLE_DEFAULT_MAX_COUNT, PARTICLE_TYPE type = PARTICLE_DEFAULT_TYPE);
     46  ParticleSystem(unsigned int maxCount = PARTICLE_DEFAULT_MAX_COUNT, PARTICLE_TYPE type = PARTICLE_DEFAULT_TYPE);
    4747  virtual ~ParticleSystem();
    4848
     
    6767 
    6868  // particles
    69   int maxCount;              //!< the count of Particles for this ParticleSystem.
     69  int maxCount;              //!< The maximum count of Particles.
     70  int count;                 //!< The current count of Particles.
    7071  PARTICLE_TYPE particleType;//!< A type for all the Particles
    7172  Material* material;        //!< A Material for all the Particles.
Note: See TracChangeset for help on using the changeset viewer.