mirror of
https://github.com/kaosat-dev/Blender_bevy_components_workflow.git
synced 2024-11-22 20:00:53 +00:00
d1b5d2627d
- replaced the various crates with a single one - replaced the Blender add-ons with a single one - this is an alpha release ! - for features etc see the various docs
58 lines
1.1 KiB
Rust
58 lines
1.1 KiB
Rust
use bevy::prelude::*;
|
|
|
|
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash, Default, States)]
|
|
pub enum AppState {
|
|
#[default]
|
|
CoreLoading,
|
|
MenuRunning,
|
|
AppLoading,
|
|
AppRunning,
|
|
AppEnding,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash, Default, States)]
|
|
pub enum GameState {
|
|
#[default]
|
|
None,
|
|
|
|
InMenu,
|
|
InGame,
|
|
|
|
InGameOver,
|
|
|
|
InSaving,
|
|
InLoading,
|
|
}
|
|
|
|
// tag components for all entities within a certain state (for despawning them if needed) , FIXME: seems kinda hack-ish
|
|
#[derive(Component)]
|
|
pub struct InCoreLoading;
|
|
#[derive(Component, Default)]
|
|
pub struct InMenuRunning;
|
|
#[derive(Component)]
|
|
|
|
pub struct InAppRunning;
|
|
|
|
// components for tagging in game vs in game menu stuff
|
|
#[derive(Component, Default)]
|
|
pub struct InMainMenu;
|
|
|
|
#[derive(Component, Default)]
|
|
pub struct InMenu;
|
|
|
|
#[derive(Component, Default)]
|
|
pub struct InGame;
|
|
|
|
#[derive(Component, Default)]
|
|
pub struct InGameSaving;
|
|
|
|
#[derive(Component, Default)]
|
|
pub struct InGameLoading;
|
|
|
|
pub struct StatePlugin;
|
|
impl Plugin for StatePlugin {
|
|
fn build(&self, app: &mut App) {
|
|
app.init_state::<AppState>().init_state::<GameState>();
|
|
}
|
|
}
|