truong-bui / AsyncLoadingScreen

Async Loading Screen is a free and open-source plugin for Unreal Engine. Async Loading Screen allows you to easily configure a Loading Screen System in the project settings, and automatically add a Loading Screen whenever you open a new level, without Level Streaming.

Home Page:https://www.unrealengine.com/marketplace/en-US/product/async-loading-screen

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Contents

Trailer

Unreal Engine Async Loading Screen Plugin

About

Loading screens aren't trivial in general, especially in Unreal Engine. And this makes a lot of UE newcomers are confused at first. Due to User Widget is destroyed at level transition, and level loading runs on the main thread, it blocks any other game activities until it's completed. That's why you need to use Level Streaming for loading screens otherwise your widget blueprint will not work. You have to manually control which object is loaded/unloaded, you can't use different Game Mode, Player Controller for each level, and sometimes there's still occasional freezing.

That said, you may need to change your game logic to fit with Level Streaming mechanic and it requires a lot of works to achieve a simple thing: Add a Loading Screen. To create a custom loading screen without Level Streaming, you have to do it in Unreal C++. However, this is a hard task for artists and designers, even for developers who are not familiar with the Slate framework and engine module code. Async Loading Screen plug-in comes to a savior.

Async Loading Screen allows you to easily configure a Loading Screen System in the project settings, and automatically add a Loading Screen whenever you open a new level. Async Loading Screen also comes with pre-design UI layouts and default icons that make it easy to custom your loading screen in a few minutes (less than 5 minutes I swear).

How it works

Async Loading Screen uses MoviePlayer to play a movie at level transition, on a different thread than game thread. MoviePlayer is not only playing movie files but also can display a Slate widget on top of the movie. We use this widget for the loading screen.

MoviePlayer is registered to PreLoadMap and PostLoadMapWithWorld delegates so it will be called and shut down automatically by the engine whenever you open a new level.

Features

  • Easy to set up, easy to use.
  • Customizable pre-make responsive layouts.
  • Customizable loading icons.
  • Pre-make default loading icons.
  • Supported animating images sequence.
  • Supported on all major platforms.
  • Easily play movies, audio files.
  • No need for coding.
  • No temporary maps, no level streaming.
  • Automatically handles all level transitions.
  • Integrates seamlessly with an existing project.

Changelog

Version 1.5.0 (6/4/2023)

  • Add "PreloadBackgroundImages" option
  • Add Blueprint functions "PreloadBackgroundImages" and "RemovePreloadedBackgroundImages" to load and remove all the background images.

image image

Version 1.4.0 (25/1/2023)

  • Fixed unintialized errors
  • Add Blueprint function "SetEnableLoadingScreen" to show/hide Loading Screen. Call this function before call the "OpenLevel" node

ALS-ShowHideLoadingScreen

Version 1.3.0 (29/08.2021)

  • Supports Unreal Engine 4.27 (Select other branches for other UE versions)
  • Added option for hiding Loading Widget when level loading completes image
  • Moved animating Image Sequence into OnPaint function

Version 1.2 (11/01.2021)

  • Added new blueprint library function Stop Loading Screen. To use this function, you must enable the Allow Engine Tick option. Call this function in BeginPlay event to stop the Loading Screen (works with Delay node):

async-loading-screen-01

  • Added Show Loading Complete Text option and Loading Complete Text Settings section, which show a text when level loading is complete. Note that you need to set Wait For Manual Stop = true, and Minimum Loading Screen Display Time = -1, this also allows players press any key to stop the Loading Screen by themself.

Show Loading Complete Text Settings: async-loading-screen-02

Example: async-loading-screen-03


Version 1.1 (14/09/2020):

  • Added Shuffle option in the movie setting.
  • Implemented set specific background/tip/movie for each level.
  • Added SetDisplayBackgroundManually, SetDisplayTipTextManually, SetDisplayMovieManually options.
  • Changed TipWidgetVerticalPadding to BorderVerticalOffset in Center Layout settings.
  • Changed WidgetHorizontalPadding to BorderHorizontalOffset in Sidebar Layout settings.
  • Add Async Loading Screen Function Library with 3 Blueprint functions: function-library-01

Requirements

Async Loading Screen plug-in requires Visual Studio and a C++ code project. If your project is blueprint based then you will need to convert it to C++ project otherwise you cannot package your game with code plug-in. It doesn't require c++ project anymore.

Installation

⚠️ After installed Async Loading Screen plugin, the "Project/Movies" setting won't work anymore. You need to set up your startup movies in the 'Startup Loading Screen' section of the plugin's setting.

  • Clone from Github

Clone this repository into your project's /Plugins folder, make one if it doesn’t exist, then compile your game in Visual Studio. If your project is blueprint based you’ll need to convert it to a c++ project by adding any c++ class. Supports Engine version from 4.23 and above.

  • Download from Marketplace

Download Async Loading Screen from Marketplace and enable the plugin in Plugins.

  • Setup

You can disable/enable the plugin in Edit→Plugins→Project/Loading Screen. You configure the plug-in settings in project settings Project Settings/Game/Async Loading Screen.

async-loading-screen-screenshot-01

Architecture

Async Loading Screen has four main components: Background, Loading Widget, Tip Widget, and Layout.

Background

The background is a static image, you can add many images as you want, it will be displayed randomly (unless Set Display Background Manually option is enabled). Leave it empty if you just want to show a movie instead of a static image.

  • Background Setting:

background-settings

Tip Widget

Just some useful texts that will be shown randomly (unless Set Display Tip Text Manually option is enabled) for players to have something to look at while waiting for a new level loaded.

  • Tip Widget Setting:

tip-widget-settings

Loading Widget

This is the most important component of the plug-in, Loading Widget lets players know that the game is still running and not freezing.

Loading Widget has two parts: Loading Icon and Loading Text. The Loading Text is just a text shown beside the Loading Icon, we mostly care about the Loading Icon. Async Loading Screen supports 3 types of Loading Icon: Throbber, Circular Throbber, and Image Sequence.

  • Loading Widget Setting:

loading-widget-settings

Loading Icon

  • Throbber Setting:

throbber-settings

  • Throbber loading icon example:

throbber-loading-01 throbber-loading-02


  • Circular Throbber Setting:

circular-throbber-settings

  • Circular Throbber loading icon example:

circular-throbber-loading-01 circular-throbber-loading-02


  • Image Sequence Setting:

image-sequence-settings

  • Image Sequence loading icon examples:

image-sequence-loading-03 image-sequence-loading-01 image-sequence-loading-02


Layout

This is the way Async Loading Screen widgets are arranged on the screen. In version 1.0 Async Loading Screen supports 5 different Layouts: Classic, Center, Letterbox, Sidebar, and Dual Sidebar.

  • Layout Settings:

layout-settings


  • Classic layout example:

classic-layout-01


  • Center layout example:

center-layout-01


  • Letterbox layout example:

letterbox-layout-01


  • Sidebar layout example:

sidebar-layout-01


  • Dual Sidebar layout example:

dual-sidebar-layout-01


Tutorial

In this tutorial, I will use a blank C++ project with UE version 4.25. But you can freely integrate Async Loading Screen plugin into your existing projects without problems. You should install the plugin following Installation steps above.

1) Create Testing Levels and Blueprints

  • First, we create two empty levels named Level_1 and Level_2 for testing purposes:

tutorial-02

  • Create BP_GameMode, BP_PlayerController, and an UMG blueprint WBP_OpenLevelButton:

tutorial-03

  • In WBP_OpenLevelButton, create a button at the center of the screen:

tutorial-04

  • In WBP_OpenLevelButton graph, add the following nodes in the button's OnClick event:

tutorial-05

  • In BP_PlayerController, create that widget and add to the viewport:

tutorial-06

  • Also enable "Show Mouse Cursor" option in BP_PlayerController:

tutorial-07

  • Change default GameMode to our BP_GameMode and BP_PlayerController in "Project/Maps & Modes" setting:

tutorial-08

  • Add two maps to the included list in "Projects/Packaging" setting so you don't have to see annoying warnings when Launch:

tutorial-09

Note that to see the plugin is actually working, you need to play as Standalone Game or Quick Launch. Play in Editor (PIE) will not work due to different level managing of Play in Editor and packaged game:

image

If you play Standalone Game or Launch the game, you will see a black screen with a white panel showing up very quickly. We'll need a little setting up to make the loading screen look better.


2) Gathering images and movies

You can use your own assets instead but for this tutorial, I'll use Unreal Engine 5 Wallpapers Desktop from this post and UE4 Startup Video Files from this page. Here are links download for you:

tutorial-11

  • Import your background images into the project:

tutorial-12


3) Setup Startup Movies

Now go to "Game/Async Loading Screen" setting in the Project Settings and open "Startup Loading Screen" section. This Startup Loading Screen only shows once when the player first opens the game so usually, you don't want to show a loading screen here. Instead, you'll want to show a UE4 logo intro movie, your studio logo movie, your sponsor 1 logo movie, your sponsor 2 logo movie, or some weird shit movies, depending on you.

  • Uncheck "Auto Complete when Loading Completes" option so we can see the movies play till end
  • Add your movie path without extension in "Movie Paths" array

Here is the Startup Loading Screen setting:

tutorial-13

Click play Standalone Game or Launch button, you will see UE4 logo movie show up here.


4) Configure Default Loading Screen setting

Open "Default Loading Screen" setting, here we actually set up a loading screen for our game. You can leave most of options default but for testing purpose, we'll change some options.

  • Set "Minimum Loading Screen Display Time" value to 10 (I recommend setting it to -1 in packaged games)
  • Set "Layout" to Classic for this tutorial.

Here is Default Loading Screen setting:

tutorial-14

4.1) Default Loading Screen - Background setting

Open "Background" setting in the Default Loading Screen section. Add your background images to the Images array. You can leave other options default:

tutorial-15

4.2) Default Loading Screen - Tip Widget setting

Open "Tip Widget" setting in the Default Loading Screen. Add some useful texts, you can change text's appearance like color, font, shadow effect here:

tutorial-16

4.3) Default Loading Screen - Loading Widget setting

Open "Loading Widget" setting in the Default Loading Screen, here we will custom our loading icon. If you open AsyncLoadingScreen Content folder, you can see there are a lot of default loading images I had made. We'll use those default images in this tutorial.

tutorial-17

  • Set "Loading Icon Type" to "Throbber"
  • Set "Loading Widget Type" to "Horizontal"
  • Open "Throbber Settings" and select icon-cat-print in "Image" option
  • Set "Space" value to 20

You can leave other options default.

tutorial-18


5) Configure Classic Layout setting

Because we already chose the Classic layout in previous step so we will configure the Classic layout and ignore other layouts. Open "Classic" setting in Layout category and change following options:

  • Set "Border Padding" to 20
  • Open "Border Background" option and set Tint color (R:0.1, G:0.1, B:0.1, A:0.8)

You can leave other options default.

tutorial-19


Alright! Now you can click play Standalone Game or Launch button to see your loading screen.

tutorial-20

6) Image Sequence Settings

Async Loading Screen also supports custom loading icon using Image Sequence. Open "Loading Widget" and change following options:

  • Set "Loading Icon Type" to "Image Sequence"
  • Open "Image Sequence Settings" and add all images in folder "Default/Mannequin/RunImages" to Images array

You can leave other options default.

tutorial-21

Click play or Launch button and you'll see the Mannequin is running as a loading icon:

tutorial-22


7) Set proper background and tip for each level:

In updated version 1.1, Async Loading Screen supports display specific background/tip/movie for each level as you want. In this tutorial we'll show proper background and tip for Level_1 and Level_2:

  • Open Background setting and enable Set Display Background Manually. tutorial-23

  • Open Tip Widget setting, enable Set Display Tip Text Manually and add 2 more following texts in TipText array: tutorial-24

  • Open WBP_OpenLevelButton blueprint, in On Clicked event, set Background Index=4, Tip Text Index=2 before Open Level=Level_2 and Background Index=2, Tip Text Index=1 before Open Level=Level_1: tutorial-25

  • Now click play Standalone Game or Launch button, you'll see Async Loading Screen always show Background index 4, TipText index 2 when loading Level_2, and Background index 2, TipText index 1 when loading Level_1.


Congratulation! We have finished the tutorial. You should try other layouts and settings to see which is fit for your game.

Showcases

Colors:Zero


Elven Warmaiden


logic-keypad


witchtastic


cursed-spire-async-loading-screen


pumpkin-jack


cions-of-vega


BrightSeeker_Scr_(4)


If you're using Async Loading Screen plugin in your game and would like to showcase here, shoot me an email about your game's info, including screenshots(gif/png/jpeg/video) of your in-game loading screen.

Donate

If Async Loading Screen is useful for you or your team, you can buy me a coffee to support this project.

License

Async Loading Screen plug-in is licensed under the MIT License.

Acknowledgment

Async Loading Screen plug-in is inspired from Loading Screen plug-in by Nick Darnell.

About

Async Loading Screen is a free and open-source plugin for Unreal Engine. Async Loading Screen allows you to easily configure a Loading Screen System in the project settings, and automatically add a Loading Screen whenever you open a new level, without Level Streaming.

https://www.unrealengine.com/marketplace/en-US/product/async-loading-screen

License:MIT License


Languages

Language:C++ 98.9%Language:C# 1.1%