make results screen show shards

This commit is contained in:
Haze Weathers 2023-12-30 21:23:16 -05:00
parent 6031536c39
commit b50d7a9fa4
2 changed files with 15 additions and 12 deletions

View file

@ -2,11 +2,13 @@ extends Control
onready var score: Label = $"%Score"
onready var shards: Label = $"%Shards"
func _ready() -> void:
Fade.fade_in()
score.text = score.text % Game.marathon_score
shards.text = shards.text % Game.marathon_shards
Fade.fade_in()
func _input(event: InputEvent) -> void: