Renpy Quick Menu Tutorial

MonaLav

New Member
Oct 3, 2024
8
5
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