meowbay created and other things

This commit is contained in:
Tabby 2026-01-14 19:00:40 +11:00
parent 09625d8285
commit 93cc1a8c59
35 changed files with 318 additions and 41 deletions

View file

@ -2,6 +2,8 @@ extends Node
@export var inventory_panel : Inventory
@export var button : Button
@export var money : int = 0
@export var money_label : Label
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
@ -11,7 +13,7 @@ func _ready() -> void:
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
money_label.text = "Money: $" + str(money)
func _on_button_pressed() -> void: