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

Method ExecuteInput

Source/Flow/Private/Nodes/Actor/FlowNode_NotifyActor.cpp:23–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21}
22
23void UFlowNode_NotifyActor::ExecuteInput(const FName& PinName)
24{
25 if (const UFlowSubsystem* FlowSubsystem = GetWorld()->GetGameInstance()->GetSubsystem<UFlowSubsystem>())
26 {
27 for (const TWeakObjectPtr<UFlowComponent>& Component : FlowSubsystem->GetComponents<UFlowComponent>(IdentityTags, MatchType, bExactMatch))
28 {
29 Component->NotifyFromGraph(NotifyTags, NetMode);
30 }
31 }
32
33 TriggerFirstOutput(true);
34}
35
36#if WITH_EDITOR
37FString UFlowNode_NotifyActor::GetNodeDescription() const

Callers

nothing calls this directly

Calls 1

NotifyFromGraphMethod · 0.80

Tested by

no test coverage detected