Files
UnrealEngine/Engine/Source/Editor/AnimGraph/Private/AnimBlueprintVariableCreationContext.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

15 lines
500 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "AnimBlueprintVariableCreationContext.h"
#include "AnimBlueprintCompiler.h"
FProperty* FAnimBlueprintVariableCreationContext::CreateVariable(const FName Name, const FEdGraphPinType& Type)
{
return CompilerContext->CreateVariable(Name, Type);
}
FProperty* FAnimBlueprintVariableCreationContext::CreateUniqueVariable(UObject* InForObject, const FEdGraphPinType& Type)
{
return CompilerContext->CreateUniqueVariable(InForObject, Type);
}