Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

According to Microsoft docs, GamepadReading.buttons, It's combination of buttons values...

Inside game loop via window.requestAnimationFrame (Or window.setInterval), I'm trying to implement way to check for pressing multiple gamepad buttons...

Here is the implementation, Although i used strings instead...

function gamepadButtonPressed(gamepad_index, button) {
    var gamepad_state = window.Windows.Gaming.Input.Gamepad.gamepads[gamepad_index].getCurrentReading();
    if (button === "leftTrigger" || button === "rightTrigger") return (gamepad_state[button] >= 0.1);
    else return (gamepad_state.buttons === window.Windows.Gaming.Input.GamepadButtons[button]); 
}

The problem i have is, The gamepad reading state changes each time, But i want way to not let this only detect one button, But also make it able to do multiple buttons, Instead of being forced to be one button...

If someone can help i'll be very grateful!

question from:https://stackoverflow.com/questions/65942071/if-more-than-one-gamepad-button-pressed-via-uwp-javascript

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...