1
0
Fork 0

initial commit

This commit is contained in:
Booklordofthedings 2024-05-11 17:33:26 +02:00
commit bc6eb6f4a6
85 changed files with 2247 additions and 0 deletions

11
Scripts/DeathLabel.gd Normal file
View file

@ -0,0 +1,11 @@
extends Label
# Called when the node enters the scene tree for the first time.
func _ready():
text = str(int(get_node("/root/DataStore").read("coins", 0))-int(get_node("/root/Scorekeeper").score)) + " + " + str(int(get_node("/root/Scorekeeper").score))
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass