Changeset 4174 in orxonox.OLD for orxonox/branches
- Timestamp:
- May 13, 2005, 9:10:07 PM (20 years ago)
- Location:
- orxonox/branches/particleEngine/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/particleEngine/src/lib/graphics/particles/particle_system.cc
r4173 r4174 35 35 { 36 36 this->setClassName ("ParticleSystem"); 37 this->material = NULL; 37 38 this->name = NULL; 38 39 this->maxCount = maxCount; … … 73 74 delete tmpDelPart; 74 75 } 76 77 if (this->material) 78 delete this->material; 75 79 } 76 80 -
orxonox/branches/particleEngine/src/story_entities/world.cc
r4173 r4174 495 495 ParticleSystem* system = new ParticleSystem(1000, PARTICLE_SPARK); 496 496 system->setLifeSpan(.5); 497 system->setConserve(.99); 497 498 system->setRadius(2, 0, 2, 0); 498 499
Note: See TracChangeset
for help on using the changeset viewer.