Navigation
API > API/Plugins > API/Plugins/MetasoundGraphCore > API/Plugins/MetasoundGraphCore/FGraph
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void AddInputNode
(
FGuid InNodeID, |
Add an input node to this graph. | MetasoundGraph.h | |
void AddInputNode
(
FGuid InNodeID, |
Add an input node to this graph. | MetasoundGraph.h |
AddInputNode(FGuid, const FVertexName &, TSharedPtr< const INode >)
Description
Add an input node to this graph.
| Name | AddInputNode |
| 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 AddInputNode
(
FGuid InNodeID,
const FVertexName & InVertexName,
TSharedPtr < const INode > InNode
)
Parameters
| Name | Remarks |
|---|---|
| InNodeID | A unique ID associated with the node. |
| InVertexName | The key for the graph input vertex. |
| InNode | A shared pointer to an input node. |
AddInputNode(FGuid, const FVertexName &, TUniquePtr< INode >)
Description
Add an input node to this graph.
| Name | AddInputNode |
| 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 AddInputNode
(
FGuid InNodeID,
const FVertexName & InVertexName,
TUniquePtr < INode > InNode
)
Parameters
| Name | Remarks |
|---|---|
| InNodeID | A unique ID associated with the node. |
| InVertexName | The key for the graph input vertex. |
| InNode | A unique pointer to an input node. |