| 327 | } |
| 328 | |
| 329 | TArray<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 | |
| 344 | TArray<FFlowPin> UFlowNode::GetContextOutputs() const |
| 345 | { |
no test coverage detected