From c026c74af2d89e3515ec57f213977674bb3a7d10 Mon Sep 17 00:00:00 2001 From: Eric Smith <5d@fifthdread.com> Date: Wed, 20 May 2026 22:17:39 -0400 Subject: [PATCH] tweak: halve font sizes to 28%/15% of screen height --- scenes/splash.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scenes/splash.gd b/scenes/splash.gd index 1101ca2..4a4e05a 100644 --- a/scenes/splash.gd +++ b/scenes/splash.gd @@ -22,8 +22,8 @@ func _ready() -> void: # Compute end font sizes as a large fraction of screen height. # Use set() to go through the property system directly. - _v_end = maxi(1, int(screen_size.y * 0.55)) - _p_end = maxi(1, int(screen_size.y * 0.30)) + _v_end = maxi(1, int(screen_size.y * 0.28)) + _p_end = maxi(1, int(screen_size.y * 0.15)) _v_start = 4 _p_start = 4