Ejemplo n.º 1
0
 void HandleOnError(object sender, AIErrorEventArgs e)
 {
     RunInMainThread(() => {
         Debug.LogException(e.Exception);
         Debug.Log(e.ToString());
     });
 }
Ejemplo n.º 2
0
 void HandleOnError(object sender, AIErrorEventArgs e)
 {
     RunInMainThread(() => {
         Debug.LogException(e.Exception);
         Debug.Log(e.ToString());
         answerTextField.text = e.Exception.Message;
     });
 }
Ejemplo n.º 3
0
 void HandleOnError(object sender, AIErrorEventArgs e)
 {
     RunInMainThread(() => {
         Debug.LogException(e.Exception);
         Debug.Log(e.ToString());
         text_to_speech.Speak("Ha habido un error.");
     });
 }
Ejemplo n.º 4
0
 void HandleOnError(object sender, AIErrorEventArgs e)
 {
     Debug.LogException(e.Exception);
     Debug.Log(e.ToString());
 }