# Objective #16222 regressed the user experience of actually using gamepads: ```rust // Before 16222 gamepad.just_pressed(GamepadButton::South) // After 16222 gamepad.digital.just_pressed(GamepadButton::South) // Before 16222 gamepad.get(GamepadButton::RightTrigger2) // After 16222 gamepad.analog.get(GamepadButton::RighTrigger2) ``` Users shouldn't need to think about "digital vs analog" when checking if a button is pressed. This abstraction was intentional and I strongly believe it is in our users' best interest. Buttons and Axes are _both_ digital and analog, and this is largely an implementation detail. I don't think reverting this will be controversial. ## Solution - Revert most of #16222 - Add the `Into<T>` from #16222 to the internals - Expose read/write `digital` and `analog` accessors on gamepad, in the interest of enabling the mocking scenarios covered in #16222 (and allowing the minority of users that care about the "digital" vs "analog" distinction in this context to make that distinction) --------- Co-authored-by: Hennadii Chernyshchyk <genaloner@gmail.com> Co-authored-by: Rob Parrett <robparrett@gmail.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			970 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			970 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//! Shows handling of gamepad input, connections, and disconnections.
 | 
						|
 | 
						|
use bevy::prelude::*;
 | 
						|
 | 
						|
fn main() {
 | 
						|
    App::new()
 | 
						|
        .add_plugins(DefaultPlugins)
 | 
						|
        .add_systems(Update, gamepad_system)
 | 
						|
        .run();
 | 
						|
}
 | 
						|
 | 
						|
fn gamepad_system(gamepads: Query<(Entity, &Gamepad)>) {
 | 
						|
    for (entity, gamepad) in &gamepads {
 | 
						|
        if gamepad.just_pressed(GamepadButton::South) {
 | 
						|
            info!("{:?} just pressed South", entity);
 | 
						|
        } else if gamepad.just_released(GamepadButton::South) {
 | 
						|
            info!("{:?} just released South", entity);
 | 
						|
        }
 | 
						|
 | 
						|
        let right_trigger = gamepad.get(GamepadButton::RightTrigger2).unwrap();
 | 
						|
        if right_trigger.abs() > 0.01 {
 | 
						|
            info!("{:?} RightTrigger2 value is {}", entity, right_trigger);
 | 
						|
        }
 | 
						|
 | 
						|
        let left_stick_x = gamepad.get(GamepadAxis::LeftStickX).unwrap();
 | 
						|
        if left_stick_x.abs() > 0.01 {
 | 
						|
            info!("{:?} LeftStickX value is {}", entity, left_stick_x);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |