Lines Matching refs:interpFactor
1536 f32* interpFactor, in CalcAnimationDataIndex() argument
1541 NW_NULL_ASSERT(interpFactor); in CalcAnimationDataIndex()
1561 *interpFactor = ptclTime - index; in CalcAnimationDataIndex()
1564 *interpFactor = ptclTime.GetFractionalParts(); in CalcAnimationDataIndex()
1567 if (*interpFactor != 0.0f) in CalcAnimationDataIndex()
1661 f32 interpFactor; in ParticleFloatImmediateUpdater() local
1674 &interpFactor, in ParticleFloatImmediateUpdater()
1683 value = value + (nextValue - value) * interpFactor; in ParticleFloatImmediateUpdater()
2115 f32 interpFactor; in ParticleVector2ImmediateUpdater() local
2130 &interpFactor, in ParticleVector2ImmediateUpdater()
2149 value.x = value.x + (nextValue - value.x) * interpFactor; in ParticleVector2ImmediateUpdater()
2155 value.y = value.y + (nextValue - value.y) * interpFactor; in ParticleVector2ImmediateUpdater()
2215 f32 interpFactor; in ParticleVector3AdditiveUpdater() local
2231 &interpFactor, in ParticleVector3AdditiveUpdater()
2255 value.x = value.x + (nextValue - value.x) * interpFactor; in ParticleVector3AdditiveUpdater()
2261 value.y = value.y + (nextValue - value.y) * interpFactor; in ParticleVector3AdditiveUpdater()
2267 value.z = value.z + (nextValue - value.z) * interpFactor; in ParticleVector3AdditiveUpdater()
2323 f32 interpFactor; in ParticleVector3ImmediateUpdater() local
2339 &interpFactor, in ParticleVector3ImmediateUpdater()
2363 value.x = value.x + (nextValue - value.x) * interpFactor; in ParticleVector3ImmediateUpdater()
2369 value.y = value.y + (nextValue - value.y) * interpFactor; in ParticleVector3ImmediateUpdater()
2375 value.z = value.z + (nextValue - value.z) * interpFactor; in ParticleVector3ImmediateUpdater()
2429 f32 interpFactor; in ParticleVector3RandomAdditiveUpdater() local
2445 &interpFactor, in ParticleVector3RandomAdditiveUpdater()
2469 value.x = value.x + (nextValue - value.x) * interpFactor; in ParticleVector3RandomAdditiveUpdater()
2475 value.y = value.y + (nextValue - value.y) * interpFactor; in ParticleVector3RandomAdditiveUpdater()
2481 value.z = value.z + (nextValue - value.z) * interpFactor; in ParticleVector3RandomAdditiveUpdater()