Files
UnrealEngine/Engine/Plugins/Experimental/AnimNext/Source/AnimNextUncookedOnly/Private/Compilation/AnimNextProcessGraphCompileContext.cpp
2025-05-18 13:04:45 +08:00

19 lines
530 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Compilation/AnimNextProcessGraphCompileContext.h"
FAnimNextProcessGraphCompileContext::FAnimNextProcessGraphCompileContext(FAnimNextRigVMAssetCompileContext& InCompilerContext)
: CompilerContext(InCompilerContext)
{
}
const TArray<URigVMGraph*>& FAnimNextProcessGraphCompileContext::GetAllGraphs() const
{
return CompilerContext.AllGraphs;
}
TArray<URigVMGraph*>& FAnimNextProcessGraphCompileContext::GetMutableAllGraphs()
{
return CompilerContext.AllGraphs;
}