Example #1
0
 public void NextQuestion(bool skipAnswerCheck = false)
 {
     if (NextQuestionDelayTimer > 0)
     {
         return;
     }
     NextQuestionDelayTimer = NextQuestionDelay;
     if (ActiveMinigame != null && !skipAnswerCheck)
     {
         ScoreControllerScript.AddQuestionPoints(ActiveMinigame.Controller.CheckCorrectAnswers());
     }
     CheckIfNeedMinigame();
 }