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 201B

1234567891011
  1. extends Control
  2. onready var label : RichTextLabel = $RichTextLabel
  3. func _ready():
  4. Signals.connect("update_score",self,"update_score")
  5. func update_score(score: int):
  6. label.text = String(score)