Files
HorrorGame/Assets/scripts/LoadingScreen.gd

12 lines
121 B
GDScript

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