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.

update_score.gd 150B

12345678910
  1. extends RichTextLabel
  2. func _ready():
  3. Signals.connect("update_score",self,"update_score")
  4. func update_score(score):
  5. self.text = String(score)