Skip to main content

The "vngen_vox_pause" Function

Syntax#

vngen_vox_pause(name);
ArgumentTypeDescription
namestringThe ID of the vox sound to pause (or keyword all for all vox)

Description#

Pauses a vox sound previously played with vngen_vox_play. To unpause the sound later, see vngen_vox_resume.

Example#

if vngen_event() {
vngen_vox_pause("John Doe");
}

This will pause vox from being performed during text actions. Remember, vox audio uses the name of the associated character as an ID.