| 349 | } |
| 350 | |
| 351 | UFlowAsset* UFlowSubsystem::GetRootFlow(const UObject* Owner) const |
| 352 | { |
| 353 | const TSet<UFlowAsset*> Result = GetRootInstancesByOwner(Owner); |
| 354 | if (Result.Num() > 0) |
| 355 | { |
| 356 | return Result.Array()[0]; |
| 357 | } |
| 358 | |
| 359 | return nullptr; |
| 360 | } |
| 361 | |
| 362 | UWorld* UFlowSubsystem::GetWorld() const |
| 363 | { |
no outgoing calls
no test coverage detected