Changeset 4437 in orxonox.OLD for orxonox/trunk/src/lib/particles/particle_emitter.h
- Timestamp:
- Jun 1, 2005, 5:24:24 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/particles/particle_emitter.h
r4381 r4437 12 12 struct Particle; 13 13 class ParticleSystem; 14 class TiXmlElement; 14 15 15 16 //! The form of the Emitter to emit from … … 25 26 ParticleEmitter(const Vector& direction, float angle = .5, 26 27 float emissionRate = 1.0, float velocity = 1.0); 28 ParticleEmitter(const TiXmlElement* root); 27 29 virtual ~ParticleEmitter(void); 30 31 void loadParams(const TiXmlElement* root); 28 32 29 33 /* controlling the emitter: interface */ … … 34 38 /* controlling the behavour: these can be used as Animation interfaces */ 35 39 void setType(EMITTER_TYPE type); 40 void setType(const char* type); 36 41 void setSize(float emitterSize); 37 42 void setEmissionRate(float emissionRate);
Note: See TracChangeset
for help on using the changeset viewer.