14 lines
400 B
GDScript
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()
|