Esempio n. 1
0
 void HandleOnError(object sender, AIErrorEventArgs e)
 {
     RunInMainThread(() => {
         Debug.LogException(e.Exception);
         Debug.Log(e.ToString());
     });
 }
Esempio n. 2
0
 void HandleOnError(object sender, AIErrorEventArgs e)
 {
     RunInMainThread(() => {
         Debug.LogException(e.Exception);
         Debug.Log(e.ToString());
         answerTextField.text = e.Exception.Message;
     });
 }
Esempio 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.");
     });
 }
 void HandleOnError(object sender, AIErrorEventArgs e)
 {
     Debug.LogException(e.Exception);
 }
Esempio n. 5
0
 private void HandleOnError(object sender, AIErrorEventArgs e)
 {
     Debug.Log("******Fehler bei APIAI Module: " + e.Exception.Message);
 }