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

Method GetContextOutputs

Source/Flow/Private/Nodes/FlowNode.cpp:344–357  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

342}
343
344TArray<FFlowPin> UFlowNode::GetContextOutputs() const
345{
346 EnsureSetFlowNodeForEditorForAllAddOns();
347
348 TArray<FFlowPin> ContextOutputs = Super::GetContextOutputs();
349
350 // Add the Auto-Generated DataPins as ContextOutputs
351 for (const FFlowPin& AutoGeneratedDataPin : AutoOutputDataPins)
352 {
353 ContextOutputs.AddUnique(AutoGeneratedDataPin);
354 }
355
356 return ContextOutputs;
357}
358
359bool UFlowNode::CanUserAddInput() const
360{

Callers 1

TryUpdateNodePinsMethod · 0.45

Calls 1

GetContextOutputsFunction · 0.85

Tested by

no test coverage detected