Skip to content

synth_speak_async

drewmccluskey edited this page Feb 12, 2019 · 4 revisions

synth_speak_async

Synthesize text to speech

Syntax:

synth_speak_async(text)
Argument Description
string text The string to synthesize

Returns: void

Description:

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.

Example:

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

Clone this wiki locally