This commit is contained in:
Glenn Maynard
2005-08-12 04:12:33 +00:00
parent b5cca118e0
commit 85d66d4a6c
+1 -1
View File
@@ -596,7 +596,7 @@ void Actor::UpdateTweening( float fDeltaTime )
if( fPercentThroughTween < fShift )
{
fPercentAlongPath = SCALE( fPercentThroughTween, 0.0f, fShift, 0.0f, 1.0f );
fPercentAlongPath = fPercentThroughTween * fPercentThroughTween;
fPercentAlongPath = fPercentAlongPath * fPercentAlongPath;
fPercentAlongPath = SCALE( fPercentAlongPath, 0.0f, 1.0f, 0.0f, fShift );
}
else