Tutorial finished

This commit is contained in:
2024-06-12 11:54:41 +02:00
parent 7b760c3ba8
commit 9cfd9e0200
9 changed files with 258 additions and 6 deletions

7
ScoreLabel.gd Normal file
View File

@@ -0,0 +1,7 @@
extends Label
var score = 0
func _on_mob_squashed():
score += 1
text = "Score: %s" % score