Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

input - If more than one gamepad button pressed via UWP JavaScript

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...