blob: 4f2c8b1c1cfa7f8519aea64000586febb66caad2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
extends Label
func _ready():
text = "Score: " + str(global_variables.score)
func _on_Hoop_score():
text = "Score: " + str(global_variables.score)
func _on_Basketball_change_power(power):
text = "Power: " + str(power)
|