We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9443151 commit 137b97aCopy full SHA for 137b97a
scripts/scenario.gd
@@ -47,7 +47,9 @@ func _on_Scenario_animation_finished(anim_name: StringName):
47
48
var outro_ui = $"../UI/Outro"
49
var scores = outro_ui.get_node("CenterContainer/VBoxContainer/HBoxContainer/VBoxContainer2")
50
- scores.get_node("PlayingTimeScore").set_text("%fm" % playing_time)
+ scores.get_node("PlayingTimeScore").set_text(
51
+ "%02d:%02d" % [playing_time / 60, fmod(playing_time, 60)]
52
+ )
53
scores.get_node("CollectableFoundedScore").set_text(
54
"%s / 5" % GameState.collectable_founded
55
)
0 commit comments