- Feb 20, 2021
- 4,091
- 6,142
this was closeI found a way to fix it.
You have to modify the file /renpy/common/00keymap.rpy.
At line 42, replace
byCode:help = [ 'K_F1', 'meta_shift_/' ],
Save the file and you can now access the menu via esc or right click .Code:help = [ ],
for the dev, if you want to add F1 as a key to access menu, add it at line 32 like this :
Anyway, the screenshots of your game looks good , i'll test it .Code:game_menu = [ 'K_ESCAPE', 'K_MENU', 'K_PAUSE', 'mouseup_3' ,'K_F1],
edit: My solution won't work if you're starting the game for the first time. you have to close it and launch it again.
but do it this way
help = [ 'K_F1', 'meta_shift_/' , 'mouseup_3' ],