Function elementalist::main_menu::button_actions::menu_actions
source · pub fn menu_actions(
interaction_query: Query<'_, '_, (&Interaction, &ButtonAction), (Changed<Interaction>, With<Button>, With<MainMenuButton>)>,
menu_state: ResMut<'_, NextState<MenuState>>,
game_state: ResMut<'_, NextState<AppState>>,
overlay_state: ResMut<'_, NextState<Overlay>>
)
Expand description
System to handle the main menu button actions
interaction_query
: grabs all the buttons that have been interacted with, with the components Interaction andButtonAction
that have a changed interaction value (i.e. the button has been pressed)app_exit_events
: can be used to send anAppExit
event to exit the gamemenu_state(next)
: lets us change the menu state for the next framegame_state(next)
: lets us change the game state for the next frame