UI框架开发中

This commit is contained in:
2025-09-29 11:03:26 +08:00
parent 71edbb6088
commit 3ea4257e2d
24 changed files with 292 additions and 266 deletions

View File

@@ -11,7 +11,7 @@ public abstract class UIBaseWindow : MonoBehaviour
}
public virtual void Hide()
{
gameObject.SetActive(true);
gameObject.SetActive(false);
OnHide();
}
protected virtual void OnShow() { }