示例#1
0
 void SkipText()
 {
     if (dialogTyper && dialogTyper.IsSkippable())
     {
         dialogTyper.Skip();
     }
 }
示例#2
0
 private void HandlePrintNextClicked()
 {
     if (testTextTyper.IsSkippable() && testTextTyper.IsTyping)
     {
         testTextTyper.Skip();
     }
     else
     {
         //ShowScript();
         GameManager.Instance.StartTutorialRound();
     }
 }