12345678910111213141516171819202122232425262728 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using XRTool.Util;
- public class ProjectMainWindow : WindowSingleton<ProjectMainWindow>
- {
- public void showXunJian()
- {
- WindowsManager.Instance.show(WindowConfig.windowType.XunJianLB);
- }
- public void showShiBie()
- {
- WindowsManager.Instance.show(WindowConfig.windowType.Demo);
- }
- public void showRtc()
- {
- ShowInfoTipManager.Instance.showTip("暂未开放,敬请期待");
- TimerMgr.Instance.CreateTimer(()=> { ShowInfoTipManager.Instance.closeTip(); },2f);
-
- }
- public void showDaoHang()
- {
- WindowsManager.Instance.show(WindowConfig.windowType.DaoHang);
- }
- }
|