Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Bevy Splash
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Microhacks
Bevy Splash
Commits
b249d990
Verified
Commit
b249d990
authored
10 months ago
by
Louis
Browse files
Options
Downloads
Patches
Plain Diff
Add README.md
parent
19e0083c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+86
-0
86 additions, 0 deletions
README.md
src/lib.rs
+4
-4
4 additions, 4 deletions
src/lib.rs
with
90 additions
and
4 deletions
README.md
0 → 100644
+
86
−
0
View file @
b249d990
# Micro Bevy Splash
*A simple, one-shot logo splash screen plugin for Bevy*
Render a splash screen logo with optional tweening that will subsequently transition to
another state when complete.
A basic use case for splash screens is to provide visual interest while loading assets. To achieve
this, you can perform the following flow:
1.
Configure your game states such that you have one to trigger asset loading, one in which the
splash screen should be shown, and one that shows a loading indicator if there are any remaining
assets
2.
Preload your splash screen assets, and then trigger the loading of your other assets
3.
Specify
`micro_bevy_splash`
to render in your splash state via the plugin settings, and transition
to that state once loading has begun
4.
Specify the loading screen state as the exit state for
`micro_bevy_splash`
via the plugin settings
5.
In your loading state, check for any assets that haven't been loaded yet, and render a loading
indicator for them - users may skip the splash screen, or loading might take longer than your splash
duration, so you should assume that there will be some assets not fully loaded when transitioning away
from the splash state
## Usage
Include
`micro_bevy_splash`
in your project's Cargo.toml
```
toml
[dependencies]
micro_bevy_splash
=
"0.1.0"
```
and then configure the plugin for your app, including what state to render in, and what state to transition to.
The states can be any type that implements the
`States`
trait from
`bevy`
, but both states must be of the
same concrete type - typically an
`enum`
```
rust
use
micro_bevy_splash
::{
MicroSplashPlugin
,
SplashSettings
};
// Import all of the usual bevy libraries here
#[derive(Clone,
Copy,
Eq,
PartialEq,
Ord,
PartialOrd,
Debug,
Hash,
States,
Default)]
enum
AppState
{
Preload
,
Setup
,
Splash
,
Menu
,
}
fn
main
()
{
App
::
new
()
.add_plugins
((
DefaultPlugins
::
default
(),
MicroSplashPlugin
::
with_settings
(
SplashSettings
{
// Specify when the plugin runs, and what it transitions to
run_in
:
AppState
::
Splash
,
transition_to
:
AppState
::
Menu
,
// Specify the asset path that the default bevy asset server will
// use to look up the splash logo to display, and the musical sting
// that will play over the screen
logo_path
:
String
::
from
(
"splash/splash_clean.png"
),
sting_path
:
String
::
from
(
"splash/sting.ogg"
),
// Allow users to press Space, Return, or Escape to skip to the exit state
skip_on_input
:
true
,
// How long to stay on this screen. This differs from any time spent tweening
// the assets, as you typically want to hang on a static view of the logo
// for some short period of time
duration
:
Duration
::
from_secs
(
3
),
// Specify tween values for animating the background colour and the logo colour
// These can be specified independently, and providing `None` will not tween
// that component
bg_color_tween
:
Some
((
Color
::
Black
,
Color
::
Red
)),
tween_duration
:
Some
(
Duration
::
from_secs
(
2
)),
logo_color_tween
:
None
,
})
))
.run
();
}
```
## Bevy Compatibility
| micro_bevy_splash | bevy |
|-------------------|--------|
| 0.1.0 | 0.13.x |
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/lib.rs
+
4
−
4
View file @
b249d990
...
@@ -40,15 +40,15 @@ pub fn started_running(state: Res<SplashState>) -> bool {
...
@@ -40,15 +40,15 @@ pub fn started_running(state: Res<SplashState>) -> bool {
state
.is_changed
()
&&
state
.is_running
()
state
.is_changed
()
&&
state
.is_running
()
}
}
pub
struct
Advent
SplashPlugin
<
StateType
:
States
>
{
pub
struct
Micro
SplashPlugin
<
StateType
:
States
>
{
settings
:
SplashSettings
<
StateType
>
,
settings
:
SplashSettings
<
StateType
>
,
}
}
impl
<
StateType
:
States
>
Advent
SplashPlugin
<
StateType
>
{
impl
<
StateType
:
States
>
Micro
SplashPlugin
<
StateType
>
{
pub
fn
with_settings
(
settings
:
SplashSettings
<
StateType
>
)
->
Advent
SplashPlugin
<
StateType
>
{
pub
fn
with_settings
(
settings
:
SplashSettings
<
StateType
>
)
->
Micro
SplashPlugin
<
StateType
>
{
Self
{
settings
}
Self
{
settings
}
}
}
}
}
impl
<
StateType
:
States
+
Copy
>
Plugin
for
Advent
SplashPlugin
<
StateType
>
{
impl
<
StateType
:
States
+
Copy
>
Plugin
for
Micro
SplashPlugin
<
StateType
>
{
fn
build
(
&
self
,
app
:
&
mut
App
)
{
fn
build
(
&
self
,
app
:
&
mut
App
)
{
app
.init_resource
::
<
SplashState
>
()
app
.init_resource
::
<
SplashState
>
()
.insert_resource
(
SplashTime
(
Duration
::
from_secs
(
5
)))
.insert_resource
(
SplashTime
(
Duration
::
from_secs
(
5
)))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment