bevy
bevy copied to clipboard
Support splash screen
What problem does this solve or what need does it fill?
I would like to make a desktop app with a splash screen to show some basic information (a logo, current version, etc.) of my software.
What solution would you like?
Something like this:
pub struct WindowPlugin {
pub primary_window: Option<Window>,
pub splash_window: Option<Window>,
pub exit_condition: ExitCondition,
pub close_when_requested: bool,
}