bevy_ui_extras 0.20.0

A crate containing a collection of utilities to make working with ui in bevy easier.
Documentation
1
2
3
4
5
6
7
8
9
10
use bevy_state::prelude::*;

#[derive(Debug, Default, Hash, PartialEq, Eq, Clone, States)]
pub enum DebugMenuState {
    /// Explain controls to manage debug menu
    Explain,
    Open,
    #[default]
    Closed,
}