squashed commit of 1.7.0

This commit is contained in:
2025-01-02 03:46:35 -06:00
parent 026409efef
commit 5eec5e2ca0
97 changed files with 29977 additions and 2843 deletions

View File

@@ -79,6 +79,9 @@ define gui.name_text_font = "gui/FallingSky.otf"
## The font used for out-of-game text.
define gui.interface_text_font = "gui/FallingSky.otf"
## This is so when switching from Thai, the system font gets reset
define gui.system_font = "DejaVuSans.ttf"
## The size of normal dialogue text.
define gui.text_size = 42
#define gui.text_outlines = [ (absolute(2), gui.text_color_outline, 0, 0) ]
@@ -107,7 +110,9 @@ define gui.title_text_size = 75
define gui.main_menu_text_size = 60
## Main and Game Menus #########################################################
image main_menu = "anim_fountain"
image main_menu = ConditionSwitch(
"persistent.epilogue == False or is_demo == True", "anim_fountain",
"persistent.epilogue == True", "alt_menu.png")
## The images used for the main and game menus.
define gui.main_menu_background = "main_menu"
define gui.game_menu_background = "gui/game_menu.png"
@@ -353,8 +358,8 @@ define gui.vbar_borders = Borders(6, 6, 6, 6)
define gui.vscrollbar_borders = Borders(6, 6, 6, 6)
define gui.vslider_borders = Borders(6, 6, 6, 6)
## What to do with unscrollable scrollbars in the gui. "hide" hides them, while
## None shows them.
## What to do with unscrollable scrollbars in the game menu. "hide" hides them,
## while None shows them.
define gui.unscrollable = "hide"
@@ -464,7 +469,7 @@ init python:
## Namebox
gui.name_xpos = 395
gui.name_ypos = -85
gui.name_ypos = -77
## Adjust the location of the textbox.
gui.dialogue_ypos = 20