![Image 1 — [QUESTION] How do I change the Preferences Screen around?](https://preview.redd.it/xp6irf9iqbkh1.png?width=1786&format=png&auto=webp&s=c91c9019f36fd84feed9c31e0f56ae3c34cdf909)
![Image 2 — [QUESTION] How do I change the Preferences Screen around?](https://preview.redd.it/6f4tmjrcrbkh1.png?width=1942&format=png&auto=webp&s=109ab4cf85812739cae6d019163afbcd10144657)
[QUESTION] How do I change the Preferences Screen around?
Hey guyyyys! It's me again with a new question!
My dating sim is coming along really well and I commissioned a fantastic artist to redo my UI! While I've been plugging away and having SOME success changing up the Save/Load Screen, I hit a wall when it came to the Preferences Screen (I renamed it to Settings). I can't completely figure out how to rearrange this around to where it looks like the second image (which is what it's supposed to look like). When I try moving the Display section to the right, the text starts cutting off from view. Does anyone have an idea of how this can be done? Here's the current code in screens.rpy. Once I get the UI completely in game, I'd love to showoff the progress I've made. :)
screen preferences():
tag menu
add "gui/settings_menu.png"
use game_menu(_("Settings"), scroll="viewport"):
vbox:
hbox:
box_wrap True
if renpy.variant("pc") or renpy.variant("web"):
vbox:
style_prefix "radio"
label _("Display")
textbutton _("Window") action Preference("display", "window")
textbutton _("Fullscreen") action Preference("display", "fullscreen")
vbox:
style_prefix "radio"
label _("Rollback Side")
textbutton _("Disable") action Preference("rollback side", "disable")
textbutton _("Left") action Preference("rollback side", "left")
textbutton _("Right") action Preference("rollback side", "right")
vbox:
style_prefix "check"
label _("Skip")
textbutton _("Unseen Text") action Preference("skip", "toggle")
textbutton _("After Choices") action Preference("after choices", "toggle")
textbutton _("Transitions") action InvertSelected(Preference("transitions", "toggle"))
## Additional vboxes of type "radio_pref" or "check_pref" can be
## added here, to add additional creator-defined preferences.
null height (4 * gui.pref_spacing)
hbox:
style_prefix "slider"
box_wrap True
spacing 15
vbox:
label _("Text Speed")
bar value Preference("text speed") xsize 600
label _("Auto-Forward Time")
bar value Preference("auto-forward time") xsize 600
vbox:
if config.has_music:
label _("Music Volume")
hbox:
bar value Preference("music volume") xsize 600
if config.has_sound:
label _("Sound Volume")
hbox:
bar value Preference("sound volume") xsize 600
if config.sample_sound:
textbutton _("Test") action Play("sound", config.sample_sound)
if config.has_voice:
label _("Voice Volume")
hbox:
bar value Preference("voice volume") xsize 600
if config.sample_voice:
textbutton _("Test") action Play("voice", config.sample_voice)