I can see the voice recognization works in the console but not updating on the scene I make, does anyone know why?
I also tried using TMP_Text and InputField_TMP
[SerializeField]
TextMeshProUGUI uiText;
void start()
{
Setup(LANG_CODE);
SpeechToText.Instance.onResultCallback = OnFinalSpeechResult;
}
void OnFinalSpeechResult(string result)
{
uiText.text = result;
}