added SCORE: before score

This commit is contained in:
pennyrigate 2023-10-09 00:52:47 -04:00
parent aab9a99f25
commit bc75c3fd50

View file

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