From 47e5be4103bc1a7c3dbb7b6a8b387cab838e1732 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Tue, 31 Aug 2021 12:06:25 +0200 Subject: [PATCH] Fix typo regression from e284a88da41f03da0140e80085cf1aaad8818ab0 --- Source/Engine/Animations/AnimationUtils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Animations/AnimationUtils.h b/Source/Engine/Animations/AnimationUtils.h index 3bae847fc..c73753964 100644 --- a/Source/Engine/Animations/AnimationUtils.h +++ b/Source/Engine/Animations/AnimationUtils.h @@ -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<>