tweak: halve font sizes to 28%/15% of screen height
This commit is contained in:
parent
f5c7defd87
commit
c026c74af2
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue