diff --git a/Source/Engine/Animations/Graph/AnimGraph.Base.cpp b/Source/Engine/Animations/Graph/AnimGraph.Base.cpp index 1ae5aee23..e9c11358c 100644 --- a/Source/Engine/Animations/Graph/AnimGraph.Base.cpp +++ b/Source/Engine/Animations/Graph/AnimGraph.Base.cpp @@ -266,13 +266,7 @@ bool AnimGraphBase::onNodeLoaded(Node* n) // Entry case 19: { - const auto entryTargetId = (int32)n->Values[0]; - const auto entryTarget = GetNode(entryTargetId); - if (entryTarget == nullptr) - { - LOG(Warning, "Missing Entry node in animation state machine graph."); - } - _rootNode = entryTarget; + _rootNode = GetNode((int32)n->Values[0]); break; } // State