Example #1
0
 void OnClick()
 {
     Debug.Log(detectNode);
     uiManager.ShowCharaContainer();
     detectNode.SetKnown(dialog.dialog);
     detectNode.ChooseNext(dialog.entry);
 }
 public void ShowDialog(DetectDialog dd)
 {
     ps.SwitchTo_VerifyIterative("Invest_Panel", () =>
     {
         ShowCharaContainer();
         //添加已知信息
         currentDetectNode.SetKnown(dd.title);
         //转换脚本入口
         currentDetectNode.ChooseNext(dd.entry);
     });
 }