lab-electrolyte/ui/questions_result.gd
2026-04-24 11:06:29 +05:00

14 lines
400 B
GDScript

extends Control
func _process(delta: float) -> void:
$Label.text = str(LabRuntime.correctness.count(true))+"/5 Верно\n"+str(LabRuntime.tries)+" попыток"
$TryAgain.visible = LabRuntime.test_failed()
func _on_try_again_pressed() -> void:
$"../Questions".shuffle_questions()
$"../Questions".visible = true
visible = false
LabRuntime.anwsers.clear()
LabRuntime.correctness.clear()