summaryrefslogtreecommitdiff
path: root/scenes/main.gd
diff options
context:
space:
mode:
authorZoey Kitt <zoey.kitt@outlook.com>2024-11-16 16:19:17 -0600
committerZoey Kitt <zoey.kitt@outlook.com>2024-11-16 17:27:31 -0600
commitb88ab51901dab2d1389d9407ff1216812b5c3d7f (patch)
treeb23dabd7d8f1f2801f8997613a705d0a20e7fad7 /scenes/main.gd
parent2a1cc7ed4628997e5e1b7299868d955ed2f7344d (diff)
Yeah that looks nice enough
Diffstat (limited to 'scenes/main.gd')
-rw-r--r--scenes/main.gd4
1 files changed, 2 insertions, 2 deletions
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: