Files
UnrealEngineUWP/Engine/Source/Editor/AnimGraph/Private/BlendSpaceGraph.cpp
thomas sarkanen 938f3b7c91 Fix non-unity CIS
#jira UE-109205 - //UE5/Release-5.0-EarlyAccess - NonUnity Compile UnrealEditor Win64 - BlendSpaceGraph.cpp(10): error C2027: use of undefined type 'UEdGraphSchema'
#rb trivial

#ROBOMERGE-SOURCE: CL 15512643 in //UE5/Release-5.0-EarlyAccess/...
#ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v771-15082668)

[CL 15512651 by thomas sarkanen in ue5-main branch]
2021-02-24 05:55:50 -04:00

16 lines
302 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "BlendSpaceGraph.h"
#include "EdGraph/EdGraphSchema.h"
void UBlendSpaceGraph::PostLoad()
{
Super::PostLoad();
// Fixup graph schema
if(Schema && Schema != UEdGraphSchema::StaticClass())
{
Schema = UEdGraphSchema::StaticClass();
}
}