[SOLVED: Intended Functionality]Potential Bug? Renpy 8.0.2 - Keysym doesn't work with gamepad, but Key does.
Posted: Wed Oct 19, 2022 5:37 pm
Potential Bug? Renpy 8.0.2 - Keysym doesn't work with gamepad, but Key does.
Documentation says it should work: "In Ren'Py keysyms are strings representing mouse buttons, joystick buttons, or keyboard keys." - https://www.renpy.org/doc/html/keymap.html
How to reproduce. Paste this code over the Quick_Menu section of a new Renpy project.
L key will toggle the screen, but your gamepad button B or PS(O) won't work; if you comment out the key part #REF803
Key works with gamepad, but Keysym does not, is this intended?
Documentation says it should work: "In Ren'Py keysyms are strings representing mouse buttons, joystick buttons, or keyboard keys." - https://www.renpy.org/doc/html/keymap.html
How to reproduce. Paste this code over the Quick_Menu section of a new Renpy project.
Code: Select all
screen test4():
text "test4"
screen quick_menu():
## Ensure this appears on top of other screens.
zorder 100
key 'pad_b_press': #REF803
action ToggleScreen("test4") #REF803
if quick_menu:
hbox:
style_prefix "quick"
xalign 0.5
yalign 1.0
textbutton "FFFFFFF":
action ToggleScreen("test4")
keysym ['pad_b_press', 'K_l']
Key works with gamepad, but Keysym does not, is this intended?