Navigation
API > API/Plugins > API/Plugins/MetasoundEngineTest > API/Plugins/MetasoundEngineTest/FNodeTestGraphBuilder
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static bool ConnectNodes
(
const Frontend::FNodeHandle& LeftNode, |
Connects an Input (Left) Node's output with name OutputName to another (Right) node's input with name InputName | NodeTestGraphBuilder.h | |
static bool ConnectNodes
(
const Frontend::FNodeHandle& LeftNode, |
Connects an Input (Left) Node's output with name OutputName to another (Right) node's input with name InputName | NodeTestGraphBuilder.h |
ConnectNodes(const Frontend::FNodeHandle &, const Frontend::FNodeHandle &, const FName &)
Description
Connects an Input (Left) Node's output with name OutputName to another (Right) node's input with name InputName
| Name | ConnectNodes |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Metasound/Source/MetasoundEngineTest/Public/NodeTestGraphBuilder.h |
| Include Path | #include "NodeTestGraphBuilder.h" |
| Source | /Engine/Plugins/Runtime/Metasound/Source/MetasoundEngineTest/Private/NodeTestGraphBuilder.cpp |
static bool ConnectNodes
(
const Frontend::FNodeHandle & LeftNode,
const Frontend::FNodeHandle & RightNode,
const FName & InputOutputName
)
Parameters
| Name | Remarks |
|---|---|
| LeftNode | The "left hand" side node to connect from |
| RightNode | The "right hand" side node to connect to |
| InputOutputName | The name of the input pin to connect to the right node @bool true if able to connect the nodes (ie. all nodes were valid, all input/outputs were valid) |
ConnectNodes(const Frontend::FNodeHandle &, const FName &, const Frontend::FNodeHandle &, const FName &)
Description
Connects an Input (Left) Node's output with name OutputName to another (Right) node's input with name InputName
| Name | ConnectNodes |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Metasound/Source/MetasoundEngineTest/Public/NodeTestGraphBuilder.h |
| Include Path | #include "NodeTestGraphBuilder.h" |
| Source | /Engine/Plugins/Runtime/Metasound/Source/MetasoundEngineTest/Private/NodeTestGraphBuilder.cpp |
static bool ConnectNodes
(
const Frontend::FNodeHandle & LeftNode,
const FName & OutputName,
const Frontend::FNodeHandle & RightNode,
const FName & InputName
)
Parameters
| Name | Remarks |
|---|---|
| LeftNode | The "left hand" side node to connect from |
| OutputName | The name of the output pin to connect from the left node |
| RightNode | The "right hand" side node to connect to |
| InputName | The name of the input pin to connect to the right node @bool true if able to connect the nodes (ie. all nodes were valid, all input/outputs were valid) |