1
0
Fork 0
This repository has been archived on 2024-05-12. You can view files and clone it, but cannot push or open issues or pull requests.
GMTK-2023-Postjam/Scripts/Shop.gd

8 lines
157 B
GDScript3
Raw Normal View History

2024-05-11 17:33:26 +02:00
extends Control
@export var coin_label : Label
func _ready():
var coins = get_node("/root/DataStore").read("coins", 0)
coin_label.text = str(int(coins))