Choice menu not repositioning
Posted: Wed May 01, 2024 3:43 pm
Hello, I'm trying to change how choice menus appear, and while I successfully did it in one project, I can't replicate it in the other. I want the choice box to be horizontal and low on the screen. Mine, however, is sticking to the top no matter what I do. Here are the edits I made in screens.rpy
and in gui.rpy
Code: Select all
style choice_hbox is hbox
style choice_button is button
style choice_button_text is button_text
style choice_hbox:
xalign 0.5
yalign 0.9
spacing 50
Code: Select all
define gui.choice_button_width = None
define gui.choice_button_height = None
define gui.choice_button_tile = False
define gui.choice_button_borders = None
define gui.choice_button_text_font = gui.text_font
define gui.choice_button_text_size = gui.text_size
define gui.choice_button_text_xalign = 0.5
define gui.choice_button_text_idle_color = '#888888'
define gui.choice_button_text_hover_color = "#ffffff"
define gui.choice_button_text_insensitive_color = '#8888887f'