1
0
This commit is contained in:
FoxSpellCaster
2025-01-10 17:06:09 -05:00
parent a8069211b7
commit 07cf5c6f53
3 changed files with 27 additions and 9 deletions

View File

@@ -1,7 +1,9 @@
extends Node3D
var score : int = 0
@export var score_text : Label
func increase_score (amount):
score += amount
score_text.text = str("Score: ", score)
print(score)