diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 17:37:18 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 17:37:18 -0600 |
commit | 7546c31057cbdec92c08e5d2ed3b59b5910a0956 (patch) | |
tree | ee70abb2f96fd737a6f735f0d2e96092a4071b34 /scenes/main.gd | |
parent | 77e45cf5cc0baa0af0a34b84f4932c2c14156a61 (diff) |
Move score window to a separate node, theoretically
Diffstat (limited to 'scenes/main.gd')
-rw-r--r-- | scenes/main.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scenes/main.gd b/scenes/main.gd index 4f1c67f..7025386 100644 --- a/scenes/main.gd +++ b/scenes/main.gd @@ -17,7 +17,7 @@ func _process(delta: float) -> void: if Input.is_action_just_pressed("G"): $Meow.play() - $Score.text = "Net worth: \n$%s" % net_worth.toString() + #$Score.text = "Net worth: \n$%s" % net_worth.toString() func _on_microgame_spawn_timer_timeout() -> void: |