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

Method GetContextInputs

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

Source from the content-addressed store, hash-verified

327}
328
329TArray<FFlowPin> UFlowNode::GetContextInputs() const
330{
331 EnsureSetFlowNodeForEditorForAllAddOns();
332
333 TArray<FFlowPin> ContextOutputs = Super::GetContextInputs();
334
335 // Add the Auto-Generated DataPins as GetContextInputs
336 for (const FFlowPin& AutoGeneratedDataPin : AutoInputDataPins)
337 {
338 ContextOutputs.AddUnique(AutoGeneratedDataPin);
339 }
340
341 return ContextOutputs;
342}
343
344TArray<FFlowPin> UFlowNode::GetContextOutputs() const
345{

Callers 1

TryUpdateNodePinsMethod · 0.45

Calls 1

GetContextInputsFunction · 0.85

Tested by

no test coverage detected