Spelling fixes.

This commit is contained in:
intolerantape
2021-01-19 23:02:33 -08:00
parent 6b5ce8c6e2
commit 75d197cb84
3 changed files with 6 additions and 6 deletions

View File

@@ -1489,11 +1489,11 @@ void AnimGraphExecutor::ProcessGroupAnimation(Box* boxBase, Node* nodeBase, Valu
case 2:
value = transitionsData.Position / transitionsData.Length;
break;
// Reaming Time
// Remaining Time
case 3:
value = transitionsData.Length - transitionsData.Position;
break;
// Reaming Normalized Time
// Remaining Normalized Time
case 4:
value = 1.0f - (transitionsData.Position / transitionsData.Length);
break;