aboutsummaryrefslogtreecommitdiffstats
path: root/Label2.gd
diff options
context:
space:
mode:
authorLMBishop <13875753+LMBishop@users.noreply.github.com>2022-10-30 03:46:30 +0000
committerLMBishop <13875753+LMBishop@users.noreply.github.com>2022-10-30 03:46:30 +0000
commit6c4e9dd16416fc7d0af6dff2a434e03086893f7c (patch)
tree1ce69360c2047f21ad2c948254d5aebe475273ac /Label2.gd
parent34b97ea823b1627eac2b91825cd1a748d87afd60 (diff)
Add coin to game over
Diffstat (limited to 'Label2.gd')
-rw-r--r--Label2.gd20
1 files changed, 20 insertions, 0 deletions
diff --git a/Label2.gd b/Label2.gd
new file mode 100644
index 0000000..b35e3a3
--- /dev/null
+++ b/Label2.gd
@@ -0,0 +1,20 @@
+extends Label
+
+
+# Declare member variables here. Examples:
+# var a = 2
+# var b = "text"
+
+var score = 0
+
+
+# Called when the node enters the scene tree for the first time.
+func _ready():
+ pass # Replace with function body.
+
+func _on_coin_hit():
+ score += 1
+ self.text = str(score)
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+#func _process(delta):
+# pass