You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#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]
16 lines
302 B
C++
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();
|
|
}
|
|
}
|