コード例 #1
0
 void OnAlert(PXCMSpeechRecognition.AlertData data)
 {
     form.PrintStatus(form.AlertToString(data.label));
 }
コード例 #2
0
 private void OnAlert(PXCMSpeechRecognition.AlertData data)
 {
     AlertDetected = data.label.ToString();
 }
コード例 #3
0
 /// <summary>
 /// On Alert
 /// </summary>
 private void OnAlert(PXCMSpeechRecognition.AlertData data)
 {
     AlertDetected = data.label.ToString();
     SetError(SpeechManagerErrorType.AlertDetected);
 }
コード例 #4
0
 void OnAlert(PXCMSpeechRecognition.AlertData data)
 {
     Debug.Log(data.label);
 }
コード例 #5
0
 private void OnAlert(PXCMSpeechRecognition.AlertData data)
 {
     Debug.WriteLine("SpeechRecognition alert: " + data.label);
 }
コード例 #6
0
 void OnAlert(PXCMSpeechRecognition.AlertData data)
 {
     //Console.WriteLine(data.label);
 }