In the old version, the quick menu automatically appeared or hid depending on if you were in the middle of a dialogue scene and then would disappear during other screens (such as, exploration screens). However, I'm finding that the quick menu will keep showing even during exploration screens.
I know "config.overlay_screens.append("quick_menu")" is what helps it appear but if I move it or blank it out, the quick menu will disappear entirely. Likewise, I haven't been able to get something like this to work:
Code: Select all
if say:
hbox:
style_prefix "quick"
xalign 0.75
yalign 0.98
textbutton _("Back") action Rollback()
textbutton _("History") action ShowMenu('history')
textbutton _("Skip") action Skip() alternate Skip(fast=True, confirm=True)
textbutton _("Auto") action Preference("auto-forward", "toggle")
textbutton _("Save") action ShowMenu('save')
textbutton _("Q.Save") action QuickSave()
textbutton _("Q.Load") action QuickLoad()
textbutton _("Prefs") action ShowMenu('preferences')

