diff --git a/game/gui.rpy b/game/gui.rpy index 4d92bff..f20dd29 100644 --- a/game/gui.rpy +++ b/game/gui.rpy @@ -435,10 +435,8 @@ init python: gui.label_text_size = 51 ## Adjust the location of the textbox. - gui.textbox_height = 360 - gui.name_xpos = 120 - gui.text_xpos = 135 - gui.text_width = 1650 + gui.textbox_height = int(gui.textbox_height * 1.263157) # ~360 + gui.text_width = 1650 # not needed ## Change the size and spacing of various things. gui.slider_size = 54 diff --git a/game/gui/button/uioptionbuttons/template_hover.png b/game/gui/button/uioptionbuttons/template_hover.png new file mode 100644 index 0000000..f85807a Binary files /dev/null and b/game/gui/button/uioptionbuttons/template_hover.png differ diff --git a/game/gui/button/uioptionbuttons/template_idle.png b/game/gui/button/uioptionbuttons/template_idle.png new file mode 100644 index 0000000..6dbd805 Binary files /dev/null and b/game/gui/button/uioptionbuttons/template_idle.png differ diff --git a/game/screens.rpy b/game/screens.rpy index a041182..7431d10 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -385,7 +385,7 @@ screen main_menu(): imagebutton auto "gui/button/menubuttons/helpbutton_%s.png" action ShowMenu("extras") imagebutton auto "gui/button/menubuttons/quitbutton_%s.png" action Quit(confirm=not main_menu) - + # if gui.show_name: # # vbox: @@ -1531,24 +1531,28 @@ style pref_vbox: ## Since a mouse may not be present, we replace the quick menu with a version ## that uses fewer and bigger buttons that are easier to touch. +screen quick_button(filename, label, function): + button: + xmaximum 160 + ymaximum 100 + action function + fixed: + add filename xalign 0.5 yalign 0.5 zoom 1.75 + text label xalign 0.5 yalign 0.5 size 42 color "#000000EE" + + screen quick_menu(): - variant "touch" - + variant "small" zorder 100 - if quick_menu: - hbox: style_prefix "quick" - xalign 0.5 - yalign 1.0 - - textbutton _("Back") action Rollback() - textbutton _("Skip") action Skip() alternate Skip(fast=True, confirm=True) - textbutton _("Auto") action Preference("auto-forward", "toggle") - textbutton _("Menu") action ShowMenu() - + yalign 0.975 + use quick_button("gui/button/uioptionbuttons/template_idle.png", "Back", Rollback()) + use quick_button("gui/button/uioptionbuttons/template_idle.png", "Skip", Skip()) #alternate Skip(fast=True, confirm=True)) + use quick_button("gui/button/uioptionbuttons/template_idle.png", "Auto", Preference("auto-forward", "toggle")) + use quick_button("gui/button/uioptionbuttons/template_idle.png", "Menu", ShowMenu()) style window: variant "small"