Navigation
API > API/Runtime > API/Runtime/MoviePlayer
Struct of all the attributes a loading screen will have.
| Name | FLoadingScreenAttributes |
| Type | struct |
| Header File | /Engine/Source/Runtime/MoviePlayer/Public/MoviePlayer.h |
| Include Path | #include "MoviePlayer.h" |
Syntax
struct FLoadingScreenAttributes
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FLoadingScreenAttributes() |
MoviePlayer.h |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| bAllowEngineTick | bool | If true, this will call the engine tick while the game thread is stalled waiting for a loading movie to finish. | MoviePlayer.h | |
| bAllowInEarlyStartup | bool | If true loading screens here cannot have any uobjects of any kind or use any engine features at all. | MoviePlayer.h | |
| bAutoCompleteWhenLoadingCompletes | bool | If true, the loading screen will disappear as soon as all movies are played and loading is done. | MoviePlayer.h | |
| bMoviesAreSkippable | bool | If true, movies can be skipped by clicking the loading screen as long as loading is done. | MoviePlayer.h | |
| bWaitForManualStop | bool | If true, movie playback continues until Stop is called. | MoviePlayer.h | |
| MinimumLoadingScreenDisplayTime | float | The minimum time that a loading screen should be opened for. | MoviePlayer.h | |
| MoviePaths | TArray< FString > | The movie paths local to the game's Content/Movies/ directory we will play. | MoviePlayer.h | |
| PlaybackType | TEnumAsByte< EMoviePlaybackType > | Should we just play back, loop, etc. | MoviePlayer.h | |
| WidgetLoadingScreen | TSharedPtr< class SWidget > | The widget to be displayed on top of the movie or simply standalone if there is no movie. | MoviePlayer.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool IsValid() |
True if there is either a standalone widget or any movie paths or both. | MoviePlayer.h |
Static
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static TSharedRef< class SWidget > NewTestLoadingScreenWidget() |
Creates a simple test loading screen widget. | MoviePlayer.h |