education-apps/psych_rich/main.gd

15 lines
317 B
GDScript3
Raw Normal View History

extends Node2D
2023-12-03 09:57:24 +00:00
var total_score : int = 0
# 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
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass