-
-
Notifications
You must be signed in to change notification settings - Fork 18
synth_speak_async
drewmccluskey edited this page Feb 12, 2019
·
4 revisions
Synthesize text to speech
synth_speak_async(text)
Argument | Description |
---|---|
string text |
The string to synthesize |
Returns: void
This function synthesizes text to speech. it is like synth_speak();
but, this doesn't stop the game when producing the sound. It is very useful for anytime a game requires sound to be produced by reading text.
synth_speak_async("Hello, I am currently really speaking out loud.");
This above code will produce the audio of the words "Hello, I am currently really speaking out loud."
Back to Synth