Skip to content

Instantly share code, notes, and snippets.

@Bunkerbewohner
Created October 27, 2017 13:14
Show Gist options
  • Save Bunkerbewohner/938cdd7b2934352b666cffcbf571b954 to your computer and use it in GitHub Desktop.
Save Bunkerbewohner/938cdd7b2934352b666cffcbf571b954 to your computer and use it in GitHub Desktop.
public IEnumerator SpeakUp()
{
var tts = new TextToSpeech("Hello World", "en");
yield return tts.Load();
yield return tts.Play();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment