| 714 | } |
| 715 | |
| 716 | UFlowNode_CustomOutput* UFlowAsset::TryFindCustomOutputNodeByEventName(const FName& EventName) const |
| 717 | { |
| 718 | for (const TPair<FGuid, UFlowNode*>& Node : ObjectPtrDecay(Nodes)) |
| 719 | { |
| 720 | if (UFlowNode_CustomOutput* CustomOutput = Cast<UFlowNode_CustomOutput>(Node.Value)) |
| 721 | { |
| 722 | if (CustomOutput->GetEventName() == EventName) |
| 723 | { |
| 724 | return CustomOutput; |
| 725 | } |
| 726 | } |
| 727 | } |
| 728 | |
| 729 | return nullptr; |
| 730 | } |
| 731 | |
| 732 | TArray<FName> UFlowAsset::GatherCustomInputNodeEventNames() const |
| 733 | { |
no outgoing calls
no test coverage detected