2023-12-03 02:19:32 +00:00
|
|
|
extends Node2D
|
|
|
|
|
2023-12-03 09:57:24 +00:00
|
|
|
var total_score : int = 0
|
2023-12-03 02:19:32 +00:00
|
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready():
|
2023-12-03 09:57:24 +00:00
|
|
|
$QuestionCard.visible = false
|
|
|
|
$ResultsCard.visible = false
|
|
|
|
$TitleCard.visible = true
|
2023-12-03 02:19:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
|
|
func _process(delta):
|
|
|
|
pass
|