diff --git a/scenes/Global.gd b/scenes/Global.gd index 268d96b..fdb2abc 100644 --- a/scenes/Global.gd +++ b/scenes/Global.gd @@ -9,6 +9,8 @@ func _ready(): print("[global#_ready] get root scene") var root = get_tree().get_root() current_scene = root.get_child(root.get_child_count() - 1) + if current_scene.name != "Main": + get_node("/root/Loading").hide() func goto_scene(path): print("[global#goto_scene]")