| 466 | } |
| 467 | |
| 468 | TSet<UFlowAsset*> UFlowComponent::GetRootInstances(const UObject* Owner) const |
| 469 | { |
| 470 | const UObject* OwnerToCheck = IsValid(Owner) ? Owner : this; |
| 471 | |
| 472 | if (const UFlowSubsystem* FlowSubsystem = GetFlowSubsystem()) |
| 473 | { |
| 474 | return FlowSubsystem->GetRootInstancesByOwner(OwnerToCheck); |
| 475 | } |
| 476 | |
| 477 | return TSet<UFlowAsset*>(); |
| 478 | } |
| 479 | |
| 480 | UFlowAsset* UFlowComponent::GetRootFlowInstance() const |
| 481 | { |
nothing calls this directly
no test coverage detected