Navigation
API > API/Plugins > API/Plugins/OptimusCore > API/Plugins/OptimusCore/UOptimusNodeGraph
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TArray< int32 > GetAllLinkIndexesToNode
(
const UOptimusNode* InNode |
OptimusNodeGraph.h | ||
TArray< int32 > GetAllLinkIndexesToNode
(
const UOptimusNode* InNode, |
Returns the indexes of all links that connect to the node. | OptimusNodeGraph.h |
GetAllLinkIndexesToNode(const UOptimusNode *)
| Name | GetAllLinkIndexesToNode |
| Type | function |
| Header File | /Engine/Plugins/Animation/DeformerGraph/Source/OptimusCore/Public/OptimusNodeGraph.h |
| Include Path | #include "OptimusNodeGraph.h" |
| Source | /Engine/Plugins/Animation/DeformerGraph/Source/OptimusCore/Private/OptimusNodeGraph.cpp |
TArray < int32 > GetAllLinkIndexesToNode
(
const UOptimusNode * InNode
) const
GetAllLinkIndexesToNode(const UOptimusNode *, EOptimusNodePinDirection)
Description
Returns the indexes of all links that connect to the node. If a direction is specified then only links coming into the node for that direction will be added (e.g. if Input is specified, then only links going into the input pins will be considered).
| Name | GetAllLinkIndexesToNode |
| Type | function |
| Header File | /Engine/Plugins/Animation/DeformerGraph/Source/OptimusCore/Public/OptimusNodeGraph.h |
| Include Path | #include "OptimusNodeGraph.h" |
| Source | /Engine/Plugins/Animation/DeformerGraph/Source/OptimusCore/Private/OptimusNodeGraph.cpp |
TArray < int32 > GetAllLinkIndexesToNode
(
const UOptimusNode * InNode,
EOptimusNodePinDirection InDirection
) const
A list of indexes into the Links array of links to the given node.
Parameters
| Name | Remarks |
|---|---|
| InNode | The node to retrieve all link connections for. |
| InDirection | The pins the links should be connected into, or Unknown if not direction is not important. |