Changeset 3938 in orxonox.OLD for orxonox/branches/particleEngine/src/lib/graphics
- Timestamp:
- Apr 23, 2005, 4:48:57 AM (20 years ago)
- Location:
- orxonox/branches/particleEngine/src/lib/graphics/particles
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/particleEngine/src/lib/graphics/particles/particle_emitter.cc
r3936 r3938 10 10 11 11 ### File Specific: 12 main-programmer: ...12 main-programmer: Benjamin Grauer 13 13 co-programmer: Patrick Boenzli 14 14 */ 15 15 16 //#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY 16 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_PARTICLE 17 17 18 18 #include "particle_emitter.h" … … 132 132 randDir.normalize(); 133 133 randDir = (this->getAbsDir()*Quaternion(angle + randomAngle *((float)random()/RAND_MAX -.5), randDir)).apply(this->direction); 134 randDir.normalize(); 134 randDir = *randDir.getNormalized() + (this->getVelocity() * system->inheritSpeed); 135 135 136 system->addParticle(this->getAbsCoor(), randDir* velocity); 136 137 } -
orxonox/branches/particleEngine/src/lib/graphics/particles/particle_engine.cc
r3937 r3938 14 14 */ 15 15 16 //#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY 16 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_PARTICLE 17 17 18 18 #include "particle_engine.h" … … 145 145 } 146 146 delete tmpIt; 147 148 147 } 149 148 -
orxonox/branches/particleEngine/src/lib/graphics/particles/particle_system.cc
r3936 r3938 42 42 this->setConserve(.8); 43 43 this->setLifeSpan(.1); 44 this->setInheritSpeed(0); 44 45 45 46 ParticleEngine::getInstance()->addSystem(this); … … 62 63 this->material = material; 63 64 } 65 66 67 /** 68 \brief how much of the speed from the ParticleEmitter should flow onto the ParticleSystem 69 \param value a Value between zero and one 70 71 72 if you want to change the value of this variable during emission time (to make it more dynamic) 73 you may want to use the animation class 74 */ 75 void ParticleSystem::setInheritSpeed(float value) 76 { 77 if (unlikely(value > 1.0)) 78 this->inheritSpeed = 1; 79 else if (unlikely(value < 0.0)) 80 this->inheritSpeed = 0; 81 else 82 this->inheritSpeed = value; 83 } 84 64 85 65 86 void ParticleSystem::setLifeSpan(float lifeSpan, float randomLifeSpan) -
orxonox/branches/particleEngine/src/lib/graphics/particles/particle_system.h
r3936 r3938 49 49 50 50 void setMaterial(Material* material); 51 void setInheritSpeed(float value); 51 52 void setLifeSpan(float lifeSpan, float randomLifeSpan = 0.0); 52 53 void setRadius(float startRadius, float endRadius, float randomRadius = 0.0); … … 66 67 float initialMass; 67 68 float randomInitialMass; 68 69 float inheritSpeed; 70 69 71 // particles 70 72 int maxCount; //!< The maximum count of Particles.
Note: See TracChangeset
for help on using the changeset viewer.