public DebugLog() { SetPropertyObjectID((int)MVCPropertyID.enDebugLog); // 调试信息显示窗口 UIDebugLog.GetInstance().HideWindow(); }
static public UIDebugLog GetInstance() { UIDebugLog self = UIManager.Singleton.GetUIWithoutLoad <UIDebugLog>(); if (self == null) { self = UIManager.Singleton.LoadUI <UIDebugLog>("UI/UIDebugLog", UIManager.Anchor.Center); } return(self); }