public bool Speak(bool force = true)
 {
     if (force || !IsSpeaking)
     {
         SpeechAudioSourceComponent.Play();
         return(true);
     }
     return(false);
 }
 public void StopSpeaking()
 {
     SpeechAudioSourceComponent.Stop();
 }