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 16:19:17 -0600
commit24d047838221c5086ee6a0f41a7dbfb0b080e0a7 (patch)
tree0229c8b9679f222b05f8bf4b4bd2b6f9b9d1ac74 /scenes/main.gd
parentf3efe1b3c71667c3a2d83b39f97d5d10bf580521 (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: