Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/FLevelUtils
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static ULevelStreaming * FindStreamingLevel
(
const ULevel* Level |
Returns the streaming level corresponding to the specified ULevel, or NULL if none exists. | LevelUtils.h | |
static ULevelStreaming * FindStreamingLevel
(
UWorld* InWorld, |
Returns the streaming level by package FName, or NULL if none exists. | LevelUtils.h | |
static ULevelStreaming * FindStreamingLevel
(
UWorld* InWorld, |
Returns the streaming level by package name, or NULL if none exists. | LevelUtils.h |
FindStreamingLevel(const ULevel *)
Description
Returns the streaming level corresponding to the specified ULevel, or NULL if none exists.
| Name | FindStreamingLevel |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/LevelUtils.h |
| Include Path | #include "LevelUtils.h" |
| Source | /Engine/Source/Runtime/Engine/Private/LevelUtils.cpp |
static ULevelStreaming * FindStreamingLevel
(
const ULevel * Level
)
The level's streaming level, or NULL if none exists.
Parameters
| Name | Remarks |
|---|---|
| Level | The level to query. |
FindStreamingLevel(UWorld *, const FName)
Description
Returns the streaming level by package FName, or NULL if none exists.
| Name | FindStreamingLevel |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/LevelUtils.h |
| Include Path | #include "LevelUtils.h" |
| Source | /Engine/Source/Runtime/Engine/Private/LevelUtils.cpp |
static ULevelStreaming * FindStreamingLevel
(
UWorld * InWorld,
const FName PackageName
)
The level's streaming level, or NULL if none exists.
Parameters
| Name | Remarks |
|---|---|
| InWorld | World to look in for the streaming level |
| PackageFName | FName of the package containing the ULevel to query |
FindStreamingLevel(UWorld , const TCHAR )
Description
Returns the streaming level by package name, or NULL if none exists.
| Name | FindStreamingLevel |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/LevelUtils.h |
| Include Path | #include "LevelUtils.h" |
| Source | /Engine/Source/Runtime/Engine/Private/LevelUtils.cpp |
static ULevelStreaming * FindStreamingLevel
(
UWorld * InWorld,
const TCHAR * PackageName
)
The level's streaming level, or NULL if none exists.
Parameters
| Name | Remarks |
|---|---|
| InWorld | World to look in for the streaming level |
| PackageName | Name of the package containing the ULevel to query |