From 9c4129a2a3efd80b3fe7dc762f87ccb5c66b504e Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Sun, 11 Aug 2024 13:24:57 -0500 Subject: [PATCH] Add todo for immediate transition. --- Source/Engine/Level/Actors/AnimatedModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Level/Actors/AnimatedModel.cpp b/Source/Engine/Level/Actors/AnimatedModel.cpp index 0eab292c5..a13085651 100644 --- a/Source/Engine/Level/Actors/AnimatedModel.cpp +++ b/Source/Engine/Level/Actors/AnimatedModel.cpp @@ -506,7 +506,7 @@ void AnimatedModel::StopSlotAnimation(const StringView& slotName, Animation* ani { if (slot.Animation == anim && slot.Name == slotName) { - //slot.Animation = nullptr; + //slot.Animation = nullptr; // TODO: make an immediate version of this method and set the animation to nullptr. slot.Reset = true; break; }