From 6c4e9dd16416fc7d0af6dff2a434e03086893f7c Mon Sep 17 00:00:00 2001 From: LMBishop <13875753+LMBishop@users.noreply.github.com> Date: Sun, 30 Oct 2022 03:46:30 +0000 Subject: Add coin to game over --- Label2.gd | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Label2.gd (limited to 'Label2.gd') 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 -- cgit v1.2.3-70-g09d2