15 lines
317 B
GDScript
15 lines
317 B
GDScript
extends Node2D
|
|
|
|
var total_score : int = 0
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
$QuestionCard.visible = false
|
|
$ResultsCard.visible = false
|
|
$TitleCard.visible = true
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _process(delta):
|
|
pass
|