- 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)
if you want disabled in some scene open the screens.rpy with your text editor
Good Luck
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
Python:
screen my_custom_screen():
tag menu
use quick_menu_hide # Hide quick menu for this screen
# Your custom screen elements here