Comment on page
Loading Screen
The screen showing the asset preloading progress
<loading-screen></loading-screen>
This is the first screen that will be shown if Asset Preloading is enabled on the game's configuration.
Component tag: loading-screen
The following code is this component's initial HTML structure. Remember you can change this structure any time by using the
template()
component built-in function.<section data-component="loading_screen" data-screen="loading">
<div data-content="wrapper">
<h2 data-string="Loading" data-content="title">Loading</h2>
<progress data-ui="load-progress" value="0" max="100" data-content="progress_bar"></progress>
<small data-string="LoadingMessage" data-content="message">Wait while the assets are loaded.</small>
</div>
</section>
Last modified 3yr ago