Function bevy::input::gamepad::gamepad_connection_system

pub fn gamepad_connection_system(
    gamepads: ResMut<'_, Gamepads>,
    connection_events: EventReader<'_, '_, GamepadConnectionEvent>,
    axis: ResMut<'_, Axis<GamepadAxis>>,
    button_axis: ResMut<'_, Axis<GamepadButton>>,
    button_input: ResMut<'_, ButtonInput<GamepadButton>>
)
Expand description

Handles GamepadConnectionEvents and updates gamepad resources.

Updates the Gamepads resource and resets and/or initializes the Axis<GamepadButton> and ButtonInput<GamepadButton> resources.

ยงNote

Whenever a Gamepad connects or disconnects, an information gets printed to the console using the info! macro.