diff options
| author | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2022-10-30 03:46:30 +0000 |
|---|---|---|
| committer | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2022-10-30 03:46:30 +0000 |
| commit | 6c4e9dd16416fc7d0af6dff2a434e03086893f7c (patch) | |
| tree | 1ce69360c2047f21ad2c948254d5aebe475273ac /Label2.gd | |
| parent | 34b97ea823b1627eac2b91825cd1a748d87afd60 (diff) | |
Add coin to game over
Diffstat (limited to 'Label2.gd')
| -rw-r--r-- | Label2.gd | 20 |
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 |
