Page 1 of 1

Moving menu choices (solved)

Posted: Mon Jul 08, 2013 2:10 pm
by Morgan_R
So, I poked around in options.rpy, but I couldn't seem to find what I needed... how do I make the choices for the in-game menus appear somewhere else on the screen? (i.e., below the character's speaking text, which I've managed to put in the middle.)

Thanks in advance for your help!

Re: Moving menu choices

Posted: Mon Jul 08, 2013 2:18 pm
by pwisaguacate
Change the yalign value in screens.rpy for the choice screen:

Code: Select all

screen choice:
    [...]

        yalign 0.8
        [...]
All the other screens are also in screens.rpy.

Re: Moving menu choices

Posted: Mon Jul 08, 2013 4:00 pm
by Morgan_R
Awesome, thanks! :)