/** * 统一打开首页,关闭其他panel */ public static void OpenCloudMain(UIPanel selfBehaviour, IUIData uiData = null) { UIMgr.OpenPanel <MainPanel>(uiData, UITransitionType.CLOUD, null, null, null, delegate { if (selfBehaviour != null) { UIMgr.CloseAllOtherPanel(MainPanel.NAME); UIMgr.ClosePanel(selfBehaviour.name); } }); }