| 733 | |
| 734 | #if WITH_EDITOR |
| 735 | void UFlowNode::SetConnections(const TMap<FName, FConnectedPin>& InConnections) |
| 736 | { |
| 737 | const TMap<FName, FConnectedPin> OldConnections = Connections; |
| 738 | Connections = InConnections; |
| 739 | OnConnectionsChanged(OldConnections); |
| 740 | } |
| 741 | #endif |
| 742 | |
| 743 | TSet<UFlowNode*> UFlowNode::GatherConnectedNodes() const |
no test coverage detected