| 805 | } |
| 806 | |
| 807 | FFlowPin* UFlowNode::FindOutputPinByName(const FName& PinName) |
| 808 | { |
| 809 | if (FFlowPin* FlowPin = FindFlowPinByName(PinName, OutputPins)) |
| 810 | { |
| 811 | return FlowPin; |
| 812 | } |
| 813 | |
| 814 | return nullptr; |
| 815 | } |
| 816 | |
| 817 | bool UFlowNode::IsInputConnected(const FFlowPin& FlowPin, FGuid* FoundGuid, FName* OutConnectedPinName) const |
| 818 | { |
no outgoing calls
no test coverage detected