Main/UI/UIManager.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
Main/UI/UIManager.cs
@@ -256,7 +256,20 @@ } // 尝试从字典中获取UI实例列表 uiDict.TryGetValue(uiName, out uiList); List<UIBase> tempList = null; uiDict.TryGetValue(uiName, out tempList); if (tempList != null) { for (int i = 0; i < tempList.Count; i++) { UIBase ui = tempList[i]; if (null != ui) { uiList.Add(ui as T); } } } return uiList; }