Dictation Recognizer – Unity

using UnityEngine; using UnityEngine.Windows.Speech; public class SpeechRecogniser: MonoBehaviour { protected DictationRecognizer dictationRecognizer; void Start() { } // CALL THIS FUNCTION WHEN YOU WANT TO START LISTENING TO DICTATION public void startDictationRequest(){ // THIS IS REALLY IMPORTANT!! // If you are using the MRTK and have phrase recognition running, then you can’t use both at once, … Read more