pub fn interaction_system(
    interaction_query: Query<'_, '_, (&Interaction, &Children, Option<&SelectedOption>), (Changed<Interaction>, With<Button>)>,
    text_query: Query<'_, '_, &mut Text>
)
Expand description

System for changing button colors when hovered, etc

  • interaction_query: grabs all the buttons that have been interacted with, with the components Interaction, children, and if they are a selected option (e.g. part of a radio group). It grabs what has changed about the interaction (i.e. if it has changed at all)
  • text_query: let’s us grab the text component of the button