I’m trying to update the text on the screen with this:
public void Say(string speech, string speaker = "", bool addative = false)
{
StopSpeaking();
SpeechText.text = targetSpeech;
StartCoroutine(Speaking(speech, addative, speaker));
}
but I keep getting:
NullReferenceException: Object reference not set to an instance of an object