You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
23 lines
510 B
C++
23 lines
510 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "RigVMModel/Nodes/RigVMFunctionEntryNode.h"
|
|
#include "RigVMModel/RigVMFunctionLibrary.h"
|
|
|
|
FLinearColor URigVMFunctionEntryNode::GetNodeColor() const
|
|
{
|
|
if(URigVMGraph* RootGraph = GetRootGraph())
|
|
{
|
|
if(RootGraph->IsA<URigVMFunctionLibrary>())
|
|
{
|
|
return FLinearColor(FColor::FromHex("CB00FFFF"));
|
|
}
|
|
}
|
|
return FLinearColor(FColor::FromHex("005DFFFF"));
|
|
}
|
|
|
|
bool URigVMFunctionEntryNode::IsDefinedAsVarying() const
|
|
{
|
|
// todo
|
|
return true;
|
|
}
|