| 795 | } |
| 796 | |
| 797 | FFlowPin* UFlowNode::FindInputPinByName(const FName& PinName) |
| 798 | { |
| 799 | if (FFlowPin* FlowPin = FindFlowPinByName(PinName, InputPins)) |
| 800 | { |
| 801 | return FlowPin; |
| 802 | } |
| 803 | |
| 804 | return nullptr; |
| 805 | } |
| 806 | |
| 807 | FFlowPin* UFlowNode::FindOutputPinByName(const FName& PinName) |
| 808 | { |
no outgoing calls
no test coverage detected