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:47:03 -0600
commitab47e086ec819884837c79087d374c94b94fa889 (patch)
treeec4bf24ae33505ac81f5aa04641d60839893a60d /scenes/main.gd
parent605873fa388a9b092baa495c3c8bbfee3902719c (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: