Hi, I'm looking to add Gamepad stick menu navigation support.
I'm aware of pairing:
Gamepad 0 Left Analog Stick > 50 Trigger Once
to get a RIGHT PRESS
but how would I combine it with:
-> Keyboard On ^ pressed OR -> Gamepad 0 Dpad up pressed OR
since I need to use the Trigger Once? I wish there was a Trigger Event for Gamepad analog sticks!
You can use a function. For example:
Keyboard On Up key pressed Call function MenuNavigate("up") Gamepad Left stick >50 Trigger once Call function MenuNavigate("up") On function MenuNavigate Parameter:direction if direction="up" ......... if direction="down" .........
Develop games in your browser. Powerful, performant & highly capable.
dop2000 Nice, I like that thanks!