UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
ELoadingPhase Namespace Reference

Enumerations

enum  Type {
  EarliestPossible , PostConfigInit , PostSplashScreen , PreEarlyLoadingScreen ,
  PreLoadingScreen , PreDefault , Default , PostDefault ,
  PostEngineInit , None , Max
}
 

Functions

PROJECTS_API ELoadingPhase::Type FromString (const TCHAR *Text)
 
PROJECTS_API const TCHARToString (const ELoadingPhase::Type Value)
 

Detailed Description

Phase at which this module should be loaded during startup.

Enumeration Type Documentation

◆ Type

Enumerator
EarliestPossible 

As soon as possible - in other words, uplugin files are loadable from a pak file (as well as right after PlatformFile is set up in case pak files aren't used) Used for plugins needed to read files (compression formats, etc)

PostConfigInit 

Loaded before the engine is fully initialized, immediately after the config system has been initialized. Necessary only for very low-level hooks

PostSplashScreen 

The first screen to be rendered after system splash screen

PreEarlyLoadingScreen 

Loaded before coreUObject for setting up manual loading screens, used for our chunk patching system

PreLoadingScreen 

Loaded before the engine is fully initialized for modules that need to hook into the loading screen before it triggers

PreDefault 

Right before the default phase

Default 

Loaded at the default loading point during startup (during engine init, after game modules are loaded.)

PostDefault 

Right after the default phase

PostEngineInit 

After the engine has been initialized

None 

Do not automatically load this module

Max 

Function Documentation

◆ FromString()

ELoadingPhase::Type ELoadingPhase::FromString ( const TCHAR Text)

Converts a string to a ELoadingPhase::Type value

Parameters
Thestring to convert to a value
Returns
The corresponding value, or 'Max' if the string is not valid.

◆ ToString()

const TCHAR * ELoadingPhase::ToString ( const ELoadingPhase::Type  Value)

Returns the name of a module load phase.

Parameters
Thevalue to convert to a string
Returns
The string representation of this enum value