Navigation
API > API/Plugins > API/Plugins/MetasoundGraphCore > API/Plugins/MetasoundGraphCore/FGraph
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void AddOutputDataSource
(
const FOutputDataSource& InSource |
Add an output data source which describes routing of data which is owned this graph and exposed externally. | MetasoundGraph.h | |
bool AddOutputDataSource
(
const INode& InNode, |
Add an output data source which describes routing of data which is owned this graph and exposed externally. | MetasoundGraph.h |
AddOutputDataSource(const FOutputDataSource &)
Description
Add an output data source which describes routing of data which is owned this graph and exposed externally.
| Name | AddOutputDataSource |
| 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 AddOutputDataSource
(
const FOutputDataSource & InSource
)
AddOutputDataSource(const INode &, const FVertexName &)
Description
Add an output data source which describes routing of data which is owned this graph and exposed externally.
| Name | AddOutputDataSource |
| 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 AddOutputDataSource
(
const INode & InNode,
const FVertexName & InVertexName
)
True if the source was successfully added. False otherwise.
Parameters
| Name | Remarks |
|---|---|
| InNode | Node which produces the data. |
| InVertexName | Key for output vertex on InNode. |