安卓优化

This commit is contained in:
2025-12-22 21:10:37 +08:00
parent 0cd5c55789
commit 43cad617af
29 changed files with 11047 additions and 4877 deletions
+11
View File
@@ -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;