Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 21, 2005, 5:06:20 PM (19 years ago)
Author:
patrick
Message:

orxonox/branches/particle_system: implemented the abstract interface to ParticleEmitter

File:
1 edited

Legend:

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

    r3927 r3929  
    2222  virtual ~ParticleEmitter(void);
    2323
     24  /* controlling the emitter: interface */
    2425  void start();
    2526  void stop();
    2627
     28  /* controlling the behavour: these can be used as Animation interfaces */
     29  void setAngle(float angle);
     30  void setEmissionRate(float emissionRate);
     31  void setVelocity(float velocity);
     32  void setTTL(float ttl);
     33
     34  /* some functions needed for internal use */
    2735  void tick(float dt);
    2836
     
    3341  float velocity;       //!< the contant speed a particle gets if been emitted
    3442  float timeToLive;     //!< this is the global time to live (ttl) definition
    35 
    3643};
    3744
Note: See TracChangeset for help on using the changeset viewer.