Changeset 4320 in orxonox.OLD for orxonox/trunk/src/lib/graphics/particles
- Timestamp:
- May 27, 2005, 1:13:42 AM (20 years ago)
- Location:
- orxonox/trunk/src/lib/graphics/particles
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/particles/particle_emitter.cc
r4318 r4320 30 30 float velocity) 31 31 { 32 this->setClassID(CL_PARTICLE_EMITTER );32 this->setClassID(CL_PARTICLE_EMITTER, "ParticleEmitter"); 33 33 this->direction = direction; 34 34 this->setSpread(angle); -
orxonox/trunk/src/lib/graphics/particles/particle_engine.cc
r4318 r4320 30 30 ParticleEngine::ParticleEngine () 31 31 { 32 this->setClassID(CL_PARTICLE_ENGINE );32 this->setClassID(CL_PARTICLE_ENGINE, "ParticleEngine"); 33 33 34 34 this->systemList = new tList<ParticleSystem>; -
orxonox/trunk/src/lib/graphics/particles/particle_system.cc
r4318 r4320 34 34 ParticleSystem::ParticleSystem (unsigned int maxCount, PARTICLE_TYPE type) 35 35 { 36 this->setClassID(CL_PARTICLE_SYSTEM );36 this->setClassID(CL_PARTICLE_SYSTEM, "ParticleSystem"); 37 37 this->material = NULL; 38 38 this->name = NULL;
Note: See TracChangeset
for help on using the changeset viewer.