Пример #1
0
    public DebugLog()
    {
        SetPropertyObjectID((int)MVCPropertyID.enDebugLog);

        // 调试信息显示窗口
        UIDebugLog.GetInstance().HideWindow();
    }
Пример #2
0
    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);
    }