Nothing personnel, milliseconds...

This commit is contained in:
Haze Weathers 2023-10-10 12:49:28 -04:00
parent b8d9a9e935
commit 314b365f7f
6 changed files with 23 additions and 10 deletions

View file

@ -29,7 +29,7 @@ func _ready() -> void:
var shard = shards.get_child(i)
shard.get_node("Title").text = level.shard_titles[i]
score.text = str("SCORE:") + "%05d" % Game.score
time.text = str("TIME: ") + Game.timeify(Game.time)
time.text = str("TIME: ") + Game.format_time(Game.time)
#Determine score bonuses
collection_bonus_score.text = str("+") + str(Game.collection_bonus)
time_bonus_score.text = str("+") + str(Game.time_bonus)