No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

scoreUI.gd 232B

1234567891011121314
  1. extends Control
  2. onready var label : Label = $MarginContainer/Label
  3. func _ready():
  4. Signals.connect("update_score",self,"update_score")
  5. func update_score(score: int):
  6. label.text = String(score)
  7. func init():
  8. update_score(0)