You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Helen.Yang #jira UE-151659, UE-151662 #p4v-preflight-copy 20381225 #preflight 6298ca1eb72f596b0fcb2f07 [CL 20469618 by phil popp in ue5-main branch]
40 lines
868 B
C++
40 lines
868 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "MetasoundOutputNode.h"
|
|
|
|
namespace Metasound
|
|
{
|
|
namespace OutputNodePrivate
|
|
{
|
|
FOutputOperator::FOutputOperator(const FVertexName& InVertexName, const FAnyDataReference& InDataReference)
|
|
: VertexName(InVertexName)
|
|
, DataReference(InDataReference)
|
|
{
|
|
}
|
|
|
|
FDataReferenceCollection FOutputOperator::GetInputs() const
|
|
{
|
|
// Slated for deprecation
|
|
return {};
|
|
}
|
|
|
|
FDataReferenceCollection FOutputOperator::GetOutputs() const
|
|
{
|
|
// Slated for deprecation
|
|
return {};
|
|
}
|
|
|
|
void FOutputOperator::Bind(FVertexInterfaceData& InVertexData) const
|
|
{
|
|
InVertexData.GetInputs().BindVertex(VertexName, DataReference);
|
|
InVertexData.GetOutputs().BindVertex(VertexName, DataReference);
|
|
}
|
|
|
|
IOperator::FExecuteFunction FOutputOperator::GetExecuteFunction()
|
|
{
|
|
return nullptr;
|
|
}
|
|
}
|
|
}
|
|
|