Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GrammarRecognizer

Creates a grammar recognizer using specified file path and minimum confidence.
Read time 1 minuteLast updated 11 days ago

Definition

GrammarRecognizer(string)

Creates a grammar recognizer using specified file path and minimum confidence.
public GrammarRecognizer(string grammarFilePath)

Parameters

grammarFilePath

Path of the grammar file.

Remarks

Note: only one grammar recognizer can be created at a time with the same grammar file.

GrammarRecognizer(string, ConfidenceLevel)

Creates a grammar recognizer using specified file path and minimum confidence.
public GrammarRecognizer(string grammarFilePath, ConfidenceLevel minimumConfidence)

Parameters

grammarFilePath

Path of the grammar file.

minimumConfidence

The confidence level at which the recognizer will begin accepting phrases.

Remarks

Note: only one grammar recognizer can be created at a time with the same grammar file.