Home
last modified time | relevance | path

Searched refs:MinLifeTime (Results 1 – 25 of 28) sorted by relevance

12

/dports/games/supertuxkart/SuperTuxKart-1.2-src/lib/irrlicht/source/Irrlicht/
H A DCParticlePointEmitter.cpp27 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticlePointEmitter()
61 Particle.endTime = now + MinLifeTime; in emitt()
62 if (MaxLifeTime != MinLifeTime) in emitt()
63 Particle.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
99 out->addInt("MinLifeTime", MinLifeTime); in serializeAttributes()
135 MinLifeTime = in->getAttributeAsInt("MinLifeTime"); in deserializeAttributes()
139 MinLifeTime = core::max_(0u, MinLifeTime); in deserializeAttributes()
140 MaxLifeTime = core::max_(MaxLifeTime, MinLifeTime); in deserializeAttributes()
141 MinLifeTime = core::min_(MinLifeTime, MaxLifeTime); in deserializeAttributes()
H A DCParticleSphereEmitter.cpp29 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticleSphereEmitter()
82 p.endTime = now + MinLifeTime; in emitt()
83 if (MaxLifeTime != MinLifeTime) in emitt()
84 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
126 out->addInt("MinLifeTime", MinLifeTime); in serializeAttributes()
164 MinLifeTime = in->getAttributeAsInt("MinLifeTime"); in deserializeAttributes()
166 MinLifeTime = core::max_(0u, MinLifeTime); in deserializeAttributes()
167 MaxLifeTime = core::max_(MaxLifeTime, MinLifeTime); in deserializeAttributes()
168 MinLifeTime = core::min_(MinLifeTime, MaxLifeTime); in deserializeAttributes()
H A DCParticleRingEmitter.cpp29 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticleRingEmitter()
81 p.endTime = now + MinLifeTime; in emitt()
82 if (MaxLifeTime != MinLifeTime) in emitt()
83 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
126 out->addInt("MinLifeTime", MinLifeTime); in serializeAttributes()
166 MinLifeTime = in->getAttributeAsInt("MinLifeTime"); in deserializeAttributes()
168 MinLifeTime = core::max_(0u, MinLifeTime); in deserializeAttributes()
169 MaxLifeTime = core::max_(MaxLifeTime, MinLifeTime); in deserializeAttributes()
170 MinLifeTime = core::min_(MinLifeTime, MaxLifeTime); in deserializeAttributes()
H A DCParticleCylinderEmitter.cpp29 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticleCylinderEmitter()
86 p.endTime = now + MinLifeTime; in emitt()
87 if (MaxLifeTime != MinLifeTime) in emitt()
88 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
129 out->addInt("MinLifeTime", MinLifeTime); in serializeAttributes()
172 MinLifeTime = in->getAttributeAsInt("MinLifeTime"); in deserializeAttributes()
174 MinLifeTime = core::max_(0u, MinLifeTime); in deserializeAttributes()
175 MaxLifeTime = core::max_(MaxLifeTime, MinLifeTime); in deserializeAttributes()
176 MinLifeTime = core::min_(MinLifeTime, MaxLifeTime); in deserializeAttributes()
H A DCParticleBoxEmitter.cpp27 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticleBoxEmitter()
75 p.endTime = now + MinLifeTime; in emitt()
76 if (MaxLifeTime != MinLifeTime) in emitt()
77 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
120 out->addInt("MinLifeTime", MinLifeTime); in serializeAttributes()
175 MinLifeTime = in->getAttributeAsInt("MinLifeTime"); in deserializeAttributes()
179 MinLifeTime = core::max_(0u, MinLifeTime); in deserializeAttributes()
180 MaxLifeTime = core::max_(MaxLifeTime, MinLifeTime); in deserializeAttributes()
181 MinLifeTime = core::min_(MinLifeTime, MaxLifeTime); in deserializeAttributes()
H A DCParticleMeshEmitter.cpp29 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticleMeshEmitter()
86 p.endTime = now + MinLifeTime; in emitt()
87 if (MaxLifeTime != MinLifeTime) in emitt()
88 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
135 p.endTime = now + MinLifeTime; in emitt()
136 if (MaxLifeTime != MinLifeTime) in emitt()
137 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
H A DCParticleAnimatedMeshSceneNodeEmitter.cpp29 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticleAnimatedMeshSceneNodeEmitter()
90 p.endTime = now + MinLifeTime; in emitt()
91 if (MaxLifeTime != MinLifeTime) in emitt()
92 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
143 p.endTime = now + MinLifeTime; in emitt()
144 if (MaxLifeTime != MinLifeTime) in emitt()
145 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
H A DCParticlePointEmitter.h60 virtual void setMinLifeTime( u32 lifeTimeMin ) { MinLifeTime = lifeTimeMin; } in setMinLifeTime()
90 virtual u32 getMinLifeTime() const { return MinLifeTime; } in getMinLifeTime()
111 u32 MinLifeTime, MaxLifeTime; variable
H A DCParticleBoxEmitter.h63 virtual void setMinLifeTime( u32 lifeTimeMin ) { MinLifeTime = lifeTimeMin; } in setMinLifeTime()
96 virtual u32 getMinLifeTime() const { return MinLifeTime; } in getMinLifeTime()
121 u32 MinLifeTime, MaxLifeTime; variable
H A DCParticleSphereEmitter.h62 virtual void setMinLifeTime( u32 lifeTimeMin ) { MinLifeTime = lifeTimeMin; } in setMinLifeTime()
98 virtual u32 getMinLifeTime() const { return MinLifeTime; } in getMinLifeTime()
129 u32 MinLifeTime, MaxLifeTime; variable
H A DCParticleMeshEmitter.h80 virtual void setMinLifeTime( u32 lifeTimeMin ) { MinLifeTime = lifeTimeMin; } in setMinLifeTime()
123 virtual u32 getMinLifeTime() const { return MinLifeTime; } in getMinLifeTime()
145 u32 MinLifeTime, MaxLifeTime; variable
H A DCParticleAnimatedMeshSceneNodeEmitter.h79 virtual void setMinLifeTime( u32 lifeTimeMin ) { MinLifeTime = lifeTimeMin; } in setMinLifeTime()
122 virtual u32 getMinLifeTime() const { return MinLifeTime; } in getMinLifeTime()
145 u32 MinLifeTime, MaxLifeTime; variable
H A DCParticleRingEmitter.h62 virtual void setMinLifeTime( u32 lifeTimeMin ) { MinLifeTime = lifeTimeMin; } in setMinLifeTime()
101 virtual u32 getMinLifeTime() const { return MinLifeTime; } in getMinLifeTime()
136 u32 MinLifeTime, MaxLifeTime; variable
/dports/x11-toolkits/irrlicht/irrlicht-1.8.5/source/Irrlicht/
H A DCParticlePointEmitter.cpp27 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticlePointEmitter()
61 Particle.endTime = now + MinLifeTime; in emitt()
62 if (MaxLifeTime != MinLifeTime) in emitt()
63 Particle.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
99 out->addInt("MinLifeTime", MinLifeTime); in serializeAttributes()
135 MinLifeTime = in->getAttributeAsInt("MinLifeTime"); in deserializeAttributes()
139 MinLifeTime = core::max_(0u, MinLifeTime); in deserializeAttributes()
140 MaxLifeTime = core::max_(MaxLifeTime, MinLifeTime); in deserializeAttributes()
141 MinLifeTime = core::min_(MinLifeTime, MaxLifeTime); in deserializeAttributes()
H A DCParticleSphereEmitter.cpp29 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticleSphereEmitter()
82 p.endTime = now + MinLifeTime; in emitt()
83 if (MaxLifeTime != MinLifeTime) in emitt()
84 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
126 out->addInt("MinLifeTime", MinLifeTime); in serializeAttributes()
164 MinLifeTime = in->getAttributeAsInt("MinLifeTime"); in deserializeAttributes()
166 MinLifeTime = core::max_(0u, MinLifeTime); in deserializeAttributes()
167 MaxLifeTime = core::max_(MaxLifeTime, MinLifeTime); in deserializeAttributes()
168 MinLifeTime = core::min_(MinLifeTime, MaxLifeTime); in deserializeAttributes()
H A DCParticleCylinderEmitter.cpp29 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticleCylinderEmitter()
86 p.endTime = now + MinLifeTime; in emitt()
87 if (MaxLifeTime != MinLifeTime) in emitt()
88 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
129 out->addInt("MinLifeTime", MinLifeTime); in serializeAttributes()
172 MinLifeTime = in->getAttributeAsInt("MinLifeTime"); in deserializeAttributes()
174 MinLifeTime = core::max_(0u, MinLifeTime); in deserializeAttributes()
175 MaxLifeTime = core::max_(MaxLifeTime, MinLifeTime); in deserializeAttributes()
176 MinLifeTime = core::min_(MinLifeTime, MaxLifeTime); in deserializeAttributes()
H A DCParticleRingEmitter.cpp29 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticleRingEmitter()
81 p.endTime = now + MinLifeTime; in emitt()
82 if (MaxLifeTime != MinLifeTime) in emitt()
83 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
126 out->addInt("MinLifeTime", MinLifeTime); in serializeAttributes()
166 MinLifeTime = in->getAttributeAsInt("MinLifeTime"); in deserializeAttributes()
168 MinLifeTime = core::max_(0u, MinLifeTime); in deserializeAttributes()
169 MaxLifeTime = core::max_(MaxLifeTime, MinLifeTime); in deserializeAttributes()
170 MinLifeTime = core::min_(MinLifeTime, MaxLifeTime); in deserializeAttributes()
H A DCParticleBoxEmitter.cpp27 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticleBoxEmitter()
75 p.endTime = now + MinLifeTime; in emitt()
76 if (MaxLifeTime != MinLifeTime) in emitt()
77 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
120 out->addInt("MinLifeTime", MinLifeTime); in serializeAttributes()
175 MinLifeTime = in->getAttributeAsInt("MinLifeTime"); in deserializeAttributes()
179 MinLifeTime = core::max_(0u, MinLifeTime); in deserializeAttributes()
180 MaxLifeTime = core::max_(MaxLifeTime, MinLifeTime); in deserializeAttributes()
181 MinLifeTime = core::min_(MinLifeTime, MaxLifeTime); in deserializeAttributes()
H A DCParticleMeshEmitter.cpp29 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticleMeshEmitter()
86 p.endTime = now + MinLifeTime; in emitt()
87 if (MaxLifeTime != MinLifeTime) in emitt()
88 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
135 p.endTime = now + MinLifeTime; in emitt()
136 if (MaxLifeTime != MinLifeTime) in emitt()
137 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
H A DCParticleAnimatedMeshSceneNodeEmitter.cpp28 MinLifeTime(lifeTimeMin), MaxLifeTime(lifeTimeMax), in CParticleAnimatedMeshSceneNodeEmitter()
89 p.endTime = now + MinLifeTime; in emitt()
90 if (MaxLifeTime != MinLifeTime) in emitt()
91 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
142 p.endTime = now + MinLifeTime; in emitt()
143 if (MaxLifeTime != MinLifeTime) in emitt()
144 p.endTime += os::Randomizer::rand() % (MaxLifeTime - MinLifeTime); in emitt()
H A DCParticlePointEmitter.h60 virtual void setMinLifeTime( u32 lifeTimeMin ) { MinLifeTime = lifeTimeMin; } in setMinLifeTime()
90 virtual u32 getMinLifeTime() const { return MinLifeTime; } in getMinLifeTime()
111 u32 MinLifeTime, MaxLifeTime; variable
H A DCParticleBoxEmitter.h63 virtual void setMinLifeTime( u32 lifeTimeMin ) { MinLifeTime = lifeTimeMin; } in setMinLifeTime()
96 virtual u32 getMinLifeTime() const { return MinLifeTime; } in getMinLifeTime()
121 u32 MinLifeTime, MaxLifeTime; variable
H A DCParticleSphereEmitter.h62 virtual void setMinLifeTime( u32 lifeTimeMin ) { MinLifeTime = lifeTimeMin; } in setMinLifeTime()
98 virtual u32 getMinLifeTime() const { return MinLifeTime; } in getMinLifeTime()
129 u32 MinLifeTime, MaxLifeTime; variable
H A DCParticleMeshEmitter.h80 virtual void setMinLifeTime( u32 lifeTimeMin ) { MinLifeTime = lifeTimeMin; } in setMinLifeTime()
123 virtual u32 getMinLifeTime() const { return MinLifeTime; } in getMinLifeTime()
145 u32 MinLifeTime, MaxLifeTime; variable
H A DCParticleAnimatedMeshSceneNodeEmitter.h79 virtual void setMinLifeTime( u32 lifeTimeMin ) { MinLifeTime = lifeTimeMin; } in setMinLifeTime()
122 virtual u32 getMinLifeTime() const { return MinLifeTime; } in getMinLifeTime()
145 u32 MinLifeTime, MaxLifeTime; variable

12