From b88ab51901dab2d1389d9407ff1216812b5c3d7f Mon Sep 17 00:00:00 2001 From: Zoey Kitt Date: Sat, 16 Nov 2024 16:19:17 -0600 Subject: Yeah that looks nice enough --- scenes/main.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scenes/main.gd') diff --git a/scenes/main.gd b/scenes/main.gd index b20524b..4f1c67f 100644 --- a/scenes/main.gd +++ b/scenes/main.gd @@ -9,7 +9,7 @@ func _ready() -> void: var window = get_window() window.position = Vector2(450, 360) - window.size = Vector2(500, 300) + window.size = Vector2(1319, 300) # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: @@ -17,7 +17,7 @@ func _process(delta: float) -> void: if Input.is_action_just_pressed("G"): $Meow.play() - $Score.text = "Net worth: $%s" % net_worth.toString() + $Score.text = "Net worth: \n$%s" % net_worth.toString() func _on_microgame_spawn_timer_timeout() -> void: -- cgit v1.2.3