Navigation
API > API/Plugins > API/Plugins/MetasoundGraphCore > API/Plugins/MetasoundGraphCore/FGraph
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void AddInputDataDestination
(
const FInputDataDestination& InDestination |
Add an input data destination to describe how data provided outside this graph should be routed internally. | MetasoundGraph.h | |
bool AddInputDataDestination
(
const INode& InNode, |
Add an input data destination to describe how data provided outside this graph should be routed internally. | MetasoundGraph.h |
AddInputDataDestination(const FInputDataDestination &)
Description
Add an input data destination to describe how data provided outside this graph should be routed internally.
| Name | AddInputDataDestination |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Metasound/Source/MetasoundGraphCore/Public/MetasoundGraph.h |
| Include Path | #include "MetasoundGraph.h" |
| Source | /Engine/Plugins/Runtime/Metasound/Source/MetasoundGraphCore/Private/MetasoundGraph.cpp |
void AddInputDataDestination
(
const FInputDataDestination & InDestination
)
AddInputDataDestination(const INode &, const FVertexName &)
Description
Add an input data destination to describe how data provided outside this graph should be routed internally.
| Name | AddInputDataDestination |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Metasound/Source/MetasoundGraphCore/Public/MetasoundGraph.h |
| Include Path | #include "MetasoundGraph.h" |
| Source | /Engine/Plugins/Runtime/Metasound/Source/MetasoundGraphCore/Private/MetasoundGraph.cpp |
bool AddInputDataDestination
(
const INode & InNode,
const FVertexName & InVertexName
)
True if the destination was successfully added. False otherwise.
Parameters
| Name | Remarks |
|---|---|
| InNode | Node which receives the data. |
| InVertexName | Key for input vertex on InNode. |