MCPcopy Create free account
hub / github.com/MothCocoon/FlowGraph / GatherConnectedNodes

Method GatherConnectedNodes

Source/Flow/Private/Nodes/FlowNode.cpp:743–752  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

741#endif
742
743TSet<UFlowNode*> UFlowNode::GatherConnectedNodes() const
744{
745 TSet<UFlowNode*> Result;
746 for (const TPair<FName, FConnectedPin>& Connection : Connections)
747 {
748 Result.Emplace(GetFlowAsset()->GetNode(Connection.Value.NodeGuid));
749 }
750
751 return Result;
752}
753
754FName UFlowNode::GetPinConnectedToNode(const FGuid& OtherNodeGuid)
755{

Callers 3

GetDefaultEntryNodeMethod · 0.80

Calls 1

GetFlowAssetFunction · 0.85

Tested by

no test coverage detected