Example #1
0
 public void SayQuestion()
 {
     if (textToSpeechManager != null)
     {
         if (!textToSpeechManager.IsSpeaking())
         {
             textToSpeechManager.SpeakText(a.getQuestionSpeech());
         }
         else
         {
             textToSpeechManager.StopSpeaking();
         }
     }
 }