예제 #1
0
 //记录分数
 public void RecordScore()
 {
     if (GSKDATA.SoftCurrentMode == "Exam")
     {
         ExamClass.ScoreAccounts(stage_current, true);
     }
 }
예제 #2
0
 //考试跳步
 public void ExamSkip()
 {
     if (++stage_current == StageTotal)
     {
         stage_current = StageTotal - 1;
     }
     else
     {
         ExamClass.ScoreAccounts(stage_current - 1, false);
         StageInitial();
         button.BtAllow();//allow
         DetectNo = 0;
         StartCoroutine("Teach");
     }
 }