Fix typo regression from e284a88da4

This commit is contained in:
Wojtek Figat
2021-08-31 12:06:25 +02:00
parent 3823d9a493
commit 47e5be4103

View File

@@ -101,7 +101,7 @@ namespace AnimationUtils
{
result.X = Math::Lerp(a.X, b.X, t);
result.Y = Math::Lerp(a.Y, b.Y, t);
result.Y = Math::Lerp(a.Z, b.Z, t);
result.Z = Math::Lerp(a.Z, b.Z, t);
}
template<>