示例#1
0
 void ShowSimpleTipsPanel()
 {
     UIProcess.Show("Prefabs/UI/SimpleTipsPanel", false, "This is a test!");
     Observable.Timer(TimeSpan.FromSeconds(6)).Subscribe(_ =>
     {
         UIProcess.Hide("Prefabs/UI/SimpleTipsPanel");
     });
 }
示例#2
0
 public void Show(string assetPath)
 {
     UIProcess.Show(assetPath);
 }
示例#3
0
 protected override void StartGame()
 {
     UIProcess.Show("Prefabs/UI/UIPreloadTestPanel", false, null);
 }