コード例 #1
0
    public void GetNewQuestion()
    {
        minigame.CreateQuestion(aps.Length);
        currentQuestion = minigame.GetQuestion();

        //currentQuestion = GameController.control.GetQuestion(aps.Length);

        // Update every answer point
        foreach (AnswerPointTrigger ap in aps)
        {
            ap.SetAnswer(currentQuestion.GetAlternative());
        }
    }