| 741 | #endif |
| 742 | |
| 743 | TSet<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 | |
| 754 | FName UFlowNode::GetPinConnectedToNode(const FGuid& OtherNodeGuid) |
| 755 | { |
no test coverage detected