Changeset 3928 in orxonox.OLD for orxonox/branches/particleEngine/src
- Timestamp:
- Apr 21, 2005, 4:53:05 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/particleEngine/src/lib/graphics/particles/particle_emitter.cc
r3926 r3928 24 24 \brief standard constructor 25 25 */ 26 ParticleEmitter::ParticleEmitter () 26 ParticleEmitter::ParticleEmitter(const Vector& direction, float angle, float emissionRate, 27 float velocity, float ttl) 27 28 { 28 29 this->setClassName ("ParticleEmitter"); 30 this->direction = direction; 31 this->angle = angle; 32 this->emissionRate = emissionRate; 33 this->velocity = velocity; 34 this->ttl = ttl; 29 35 } 30 36
Note: See TracChangeset
for help on using the changeset viewer.