aboutsummaryrefslogtreecommitdiffstats
path: root/CoinCount.gd
blob: e82649694d5a4d1a14fad6b0065e632fd960f71e (plain)
1
2
3
4
5
6
7
extends Label

var coins = 0

func _on_coin_hit():
	coins += 1
	self.text = str(coins)