Page 1 of 1

Question Menu

Posted: Mon Oct 12, 2015 2:06 pm
by Tagumonman55
How can I keep the Question visible while the choices are on screen?

can someone show an example code so I can understand better?

Re: Question Menu

Posted: Mon Oct 12, 2015 2:37 pm
by Zetsubou

Code: Select all

"Text shown before menu"
menu:
    "choice 1":
        pass
    "choice 2":
        pass

menu:
    "Text shown with menu"

    "choice 1":
        pass
    "choice 2":
        pass

Re: Question Menu

Posted: Mon Oct 12, 2015 3:23 pm
by Tagumonman55
Thanks!