audio.createSound

From GTA Connected
Revision as of 21:50, 21 March 2025 by Vortrex (talk | contribs)
Jump to navigation Jump to search

Function Client Only icon-iii.png icon-vc.png icon-sa.png icon-iv.png Online and Offline

Available since Client 1.0.0

Sound audio.createSound(Stream audioData, bool loop)

The audio.createSound function is used to add a sound that optionally loops.

Parameters

1) Stream audioData The stream of audio data.
2) bool loop Whether to play the sound repeatedly.

Return

Sound A sound object.

Notes

  • You'll need to load the audio file into a file stream using openFile before you can create a sound object with it. The only supported audio file types are MP3 and Ogg Vorbis (ogg). Due to an inherit bug with MP3's appending a small gap at the end of the file, you may experience a slight delay after each play of the audio file. This is especially noticeable when looping the audio. The only workaround for this is to convert the audio file to Ogg Vorbis (ogg) before using it in GTA Connected.

Examples

There aren't any examples for this function.

Compatibility

There isn't any compatibility information for this function.