void Start()
 {
     obj = new VoiceRec.VoiceClass();
     //set of commands : replace with set of commands to be recognized
     string[] str = { "left", "right", "down", "up" };
     obj.initRecog(str);
 }
Example #2
0
 void Start()
 {
     obj = new VoiceRec.VoiceClass();
     //set of commands
     string[] str = { "left", "right", "down", "up" };
     obj.initRecog(str);
 }