tweak: halve font sizes to 28%/15% of screen height

This commit is contained in:
Eric Smith 2026-05-20 22:17:39 -04:00
parent f5c7defd87
commit c026c74af2

View file

@ -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