Renpy Quick Menu Tutorial

MonaLav

New Member
Oct 3, 2024
8
5
3
Hi guys sometimes you want disable a quick menu or adding a custom control like a quick menu

for doing this

open script.rpy with your text editor

This disable the quick menu in all scene (Global)

Python:
define config.quick_menu = False  # Hide quick menu globally
if you want disabled in some scene open the screens.rpy with your text editor

Python:
screen my_custom_screen():
    tag menu
    use quick_menu_hide  # Hide quick menu for this screen

    # Your custom screen elements here
Good Luck
 

bu5t3r

Newbie
Feb 12, 2025
25
9
12
Hi, I tried setting this to True in a game without a menu, but the game won't start and I just get an error message (True is not defined or something like that). Even a gui.rpy from another game with a menu only caused an error.

Do you know of a way to add the quick menu to games without one?