少年修仙传客户端代码仓库
client_Zxw
2018-09-26 cbe3d7c2cb4fbf96f3a2295351fa03ea14035499
System/WindowBase/WindowCenter.cs
@@ -411,7 +411,7 @@
            }
        }
        public bool CheckOpen<T>() where T : Window
        public bool IsOpen<T>() where T : Window
        {
            T win = null;
            if (TryGetWindow(out win))
@@ -427,7 +427,7 @@
            }
        }
        public bool CheckOpen(string _windowName)
        public bool IsOpen(string _windowName)
        {
            if (windows.ContainsKey(_windowName) && windows[_windowName] != null)
            {
@@ -438,16 +438,6 @@
            {
                return false;
            }
        }
        public void PreCreateWindows()
        {
            m_PreCreateWindowNum = 0;
        }
        private void AsyncLoadWindowCallBack(bool _ok, UnityEngine.Object _object)
        {
            m_PreCreateWindowNum--;
        }
        public bool ExitAnyFullScreenOrMaskWin()