Lines Matching refs:interpFactor

1551     f32* interpFactor,  in CalcAnimationDataIndex()  argument
1556 NW_NULL_ASSERT(interpFactor); in CalcAnimationDataIndex()
1576 *interpFactor = ptclTime - index; in CalcAnimationDataIndex()
1579 *interpFactor = ptclTime.GetFractionalParts(); in CalcAnimationDataIndex()
1582 if (*interpFactor != 0.0f) in CalcAnimationDataIndex()
1676 f32 interpFactor; in ParticleFloatImmediateUpdater() local
1689 &interpFactor, in ParticleFloatImmediateUpdater()
1698 value = value + (nextValue - value) * interpFactor; in ParticleFloatImmediateUpdater()
2130 f32 interpFactor; in ParticleVector2ImmediateUpdater() local
2145 &interpFactor, in ParticleVector2ImmediateUpdater()
2164 value.x = value.x + (nextValue - value.x) * interpFactor; in ParticleVector2ImmediateUpdater()
2170 value.y = value.y + (nextValue - value.y) * interpFactor; in ParticleVector2ImmediateUpdater()
2230 f32 interpFactor; in ParticleVector3AdditiveUpdater() local
2246 &interpFactor, in ParticleVector3AdditiveUpdater()
2270 value.x = value.x + (nextValue - value.x) * interpFactor; in ParticleVector3AdditiveUpdater()
2276 value.y = value.y + (nextValue - value.y) * interpFactor; in ParticleVector3AdditiveUpdater()
2282 value.z = value.z + (nextValue - value.z) * interpFactor; in ParticleVector3AdditiveUpdater()
2338 f32 interpFactor; in ParticleVector3ImmediateUpdater() local
2354 &interpFactor, in ParticleVector3ImmediateUpdater()
2378 value.x = value.x + (nextValue - value.x) * interpFactor; in ParticleVector3ImmediateUpdater()
2384 value.y = value.y + (nextValue - value.y) * interpFactor; in ParticleVector3ImmediateUpdater()
2390 value.z = value.z + (nextValue - value.z) * interpFactor; in ParticleVector3ImmediateUpdater()
2444 f32 interpFactor; in ParticleVector3RandomAdditiveUpdater() local
2460 &interpFactor, in ParticleVector3RandomAdditiveUpdater()
2484 value.x = value.x + (nextValue - value.x) * interpFactor; in ParticleVector3RandomAdditiveUpdater()
2490 value.y = value.y + (nextValue - value.y) * interpFactor; in ParticleVector3RandomAdditiveUpdater()
2496 value.z = value.z + (nextValue - value.z) * interpFactor; in ParticleVector3RandomAdditiveUpdater()