Made Loading screen it's own component instead of being part of the player and made it part of the game

This commit is contained in:
Willow Behar
2024-06-02 15:27:47 -05:00
parent 452c500937
commit d13d76411c
4 changed files with 51 additions and 42 deletions

View File

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