so i have a gamepad with 10 buttons and no joysticks, however the dpad counts as 4 buttons but also as a joystick which is a problem because when i press for example left it counts as [←] AND [O] or up counts as [↑] AND [X]
my issue is that i cant turn the gamepad input off in the web player nor in the site settings (i dont know why it doesnt work) because i already have a program that makes it when i press a gamepad button it presses a keyboard button
so im basically asking for a feature to turn gamepad input off or to configure it (or if someone knows why chromes site settings dont work)
(also this doesnt belong into bugs but i couldnt find a support or suggestions category)



Maybe I'm misunderstanding what you're looking for, but if you don't want gamepad input, can't you just disconnect the gamepad?



@2bitchuck well i want the gamepad input to not be processed by pico8 (or just chrome) because i have a program that pressses a keyboard key when i press a gamepad button so i cant unplug it



javascript:[P8_BUTTON_O,P8_BUTTON_X,P8_DPAD_LEFT,P8_DPAD_RIGHT,P8_DPAD_UP,P8_DPAD_DOWN,P8_MENU].forEach((v)=>v.action='none') |
Please add this code to your new bookmarks.
After that, launch the bbs cart, try clicking on the bookmarks-bar to run the script.
This is a technique called a bookmarklet.

[Please log in to post a comment]