I have used "$show_quick_menu = False" at the end of script and "$show_quick_menu = True" at the beginning of new script.
In that case, when new script was fade-in, game screen came out first and quick menu came out. It was normal.
However, quick menu replaced with image button became a problem, and now $show_quick_menu = False is not being used.
In this case, script jumps(fade out with black), and then quick menu comes out first and the game screen fades in.
Code: Select all
stop music fadeout 2.0
stop sound
stop bgv
# $ show_quick_menu = False
scene black
with fadehold
pause 1.0
jump si_01a
Code: Select all
label si_01a:
scene cg_01 with dissolve
# $ show_quick_menu = True
play music "sound/bgm/bgm_004.ogg"
When jumping from A to B, there is a problem between "quick menu" and "game screen" fade-in order.
I want to do it in the order of fade-in, game screen first and then quick menu, without using $ show_quick_menu = False.
Where in script should I add or modify?