_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/Battle_Royale/LoadPanel.cs
2024-11-27 18:05:26 +08:00

28 lines
408 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class LoadPanel : BasePanel
{
public static LoadPanel instance;
public override void Start()
{
instance = this;
base.Start();
ShowPanel();
}
public IEnumerator ToHidePanel()
{
yield return new WaitForSeconds(1.0f);
HidePanel();
}
}