1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use bevy::prelude::*;

use super::resources::SplashTimer;
use game_library::state::AppState;

// Tick the timer, and change state when finished
pub fn countdown(
    mut game_state: ResMut<NextState<AppState>>,
    time: Res<Time>,
    mut timer: ResMut<SplashTimer>,
) {
    if timer.tick(time.delta()).finished() {
        game_state.set(AppState::MainMenu);
    }
}