MCPcopy Create free account
hub / github.com/MothCocoon/FlowGraph / TryFindCustomOutputNodeByEventName

Method TryFindCustomOutputNodeByEventName

Source/Flow/Private/FlowAsset.cpp:716–730  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

714}
715
716UFlowNode_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
732TArray<FName> UFlowAsset::GatherCustomInputNodeEventNames() const
733{

Callers 2

GetCustomEventNodeMethod · 0.80
ExecuteInputMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected