Lines Matching refs:interpFactor
1496 f32* interpFactor, in CalcAnimationDataIndex() argument
1501 NW_NULL_ASSERT(interpFactor); in CalcAnimationDataIndex()
1521 *interpFactor = ptclTime - index; in CalcAnimationDataIndex()
1524 *interpFactor = ptclTime.GetFractionalParts(); in CalcAnimationDataIndex()
1527 if (*interpFactor != 0.0f) in CalcAnimationDataIndex()
1621 f32 interpFactor; in ParticleFloatImmediateUpdater() local
1634 &interpFactor, in ParticleFloatImmediateUpdater()
1643 value = value + (nextValue - value) * interpFactor; in ParticleFloatImmediateUpdater()
1939 f32 interpFactor; in ParticleVector2ImmediateUpdater() local
1954 &interpFactor, in ParticleVector2ImmediateUpdater()
1973 value.x = value.x + (nextValue - value.x) * interpFactor; in ParticleVector2ImmediateUpdater()
1979 value.y = value.y + (nextValue - value.y) * interpFactor; in ParticleVector2ImmediateUpdater()
2039 f32 interpFactor; in ParticleVector3AdditiveUpdater() local
2055 &interpFactor, in ParticleVector3AdditiveUpdater()
2079 value.x = value.x + (nextValue - value.x) * interpFactor; in ParticleVector3AdditiveUpdater()
2085 value.y = value.y + (nextValue - value.y) * interpFactor; in ParticleVector3AdditiveUpdater()
2091 value.z = value.z + (nextValue - value.z) * interpFactor; in ParticleVector3AdditiveUpdater()
2147 f32 interpFactor; in ParticleVector3ImmediateUpdater() local
2163 &interpFactor, in ParticleVector3ImmediateUpdater()
2187 value.x = value.x + (nextValue - value.x) * interpFactor; in ParticleVector3ImmediateUpdater()
2193 value.y = value.y + (nextValue - value.y) * interpFactor; in ParticleVector3ImmediateUpdater()
2199 value.z = value.z + (nextValue - value.z) * interpFactor; in ParticleVector3ImmediateUpdater()
2253 f32 interpFactor; in ParticleVector3RandomAdditiveUpdater() local
2269 &interpFactor, in ParticleVector3RandomAdditiveUpdater()
2293 value.x = value.x + (nextValue - value.x) * interpFactor; in ParticleVector3RandomAdditiveUpdater()
2299 value.y = value.y + (nextValue - value.y) * interpFactor; in ParticleVector3RandomAdditiveUpdater()
2305 value.z = value.z + (nextValue - value.z) * interpFactor; in ParticleVector3RandomAdditiveUpdater()