Files
HorrorGame/Assets/scripts/LoadingScreen.gd

11 lines
106 B
GDScript

extends Control
func _init():
show()
func _ready():
$Timer.start()
func _on_timer_timeout():
hide()