Ren'Py Change menu to a side

RichyCapy

Active Member
Game Developer
Jul 26, 2017
763
843
Hi!

I was seen other games and run into Been a DIK, and I like how the menu is in the side instead of in the middle:
9.jpg

Does someone know how to do this??
 

CarlaDaniela

Member
Mar 1, 2019
265
392
game/screens.rpy/ open with text editor
search "Choice screen"
go to

style choice_vbox:
xalign 0.5
ypos 270
yanchor 0.5

change the values
 
  • Like
Reactions: ddeadbeat

RichyCapy

Active Member
Game Developer
Jul 26, 2017
763
843
game/screens.rpy/ open with text editor
search "Choice screen"
go to

style choice_vbox:
xalign 0.5
ypos 270
yanchor 0.5

change the values
Awesome! that help a lot, just a small follow up for any other person who wants to do this, you also need to go to
game/gui.rpy
and look for "Choice Buttons"

And change:
define gui.choice_button_text_xalign = 0.5
to
define gui.choice_button_text_xalign = 0.0

So it aligns the text left

Thanks again!!
 
  • Like
Reactions: ddeadbeat