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

Method TriggerInputDirect

Source/Flow/Private/FlowAsset.cpp:1175–1187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1173}
1174
1175void UFlowAsset::TriggerInputDirect(const FGuid& NodeGuid, const FName& PinName, const FConnectedPin& FromPin)
1176{
1177 if (UFlowNode* Node = Nodes.FindRef(NodeGuid))
1178 {
1179 if (!ActiveNodes.Contains(Node))
1180 {
1181 ActiveNodes.Add(Node);
1182 RecordedNodes.Add(Node);
1183 }
1184
1185 Node->TriggerInput(PinName);
1186 }
1187}
1188
1189bool UFlowAsset::ShouldDeferTriggers() const
1190{

Callers

nothing calls this directly

Calls 1

TriggerInputMethod · 0.45

Tested by

no test coverage detected