安卓优化
This commit is contained in:
@@ -5,6 +5,7 @@ namespace AibisDream.UI
|
||||
public class InfoPanel : MonoBehaviour, IUIPanel
|
||||
{
|
||||
[SerializeField] private DemoTimer demoTimer;
|
||||
[SerializeField] private GameObject loading;
|
||||
[SerializeField] private VariableBar variableBar;
|
||||
|
||||
public void SetTimerActive(bool isOpen)
|
||||
@@ -35,6 +36,16 @@ namespace AibisDream.UI
|
||||
gameObject.SetActive(false);
|
||||
}
|
||||
|
||||
public void ShowLoading()
|
||||
{
|
||||
loading.SetActive(true);
|
||||
}
|
||||
|
||||
public void HideLoading()
|
||||
{
|
||||
loading.SetActive(false);
|
||||
}
|
||||
|
||||
public bool IsOpen => gameObject.activeSelf;
|
||||
|
||||
public bool IsCloseable => false;
|
||||
|
||||
Reference in New Issue
Block a user