Added Loading Screen for 1 second to just hide the player falling after spawning in

This commit is contained in:
Willow Behar
2024-05-09 11:53:33 -05:00
parent 31b32e4108
commit b67de8d3df
3 changed files with 53 additions and 1 deletions

View File

@ -0,0 +1,10 @@
extends Control
func _init():
show()
func _ready():
$Timer.start()
func _on_timer_timeout():
hide()