protected void Awake() { Debug.Log("UIManager Awake "); _instance = this; InitUIManager(); }
public static UIManager GetInstance() { if (_instance == null) _instance = new UIManager(); return _instance; }