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