playAudio()
Purpose
Play an audio track
Description
Play the specified audio track at the specified volume, pan and speed on the specified channel
Syntax
playAudio( channel, handle, volume, pan, speed, loops )
Arguments
channel audio channel from 0 to 15
handle handle of the audio sample from loadaudio
volume volume from 0 to 1
pan stereo pan from left (0) to right (1)
speed speed mutiplier (1 is normal speed)
loops number of times to repeat (-1 is forever)
Example
handle = loadAudio( "David Silvera/music_evil_presence" )
volume = 0.5
pan = 0.5
speed = 1
playAudio( 0, handle, volume, pan, speed, -1 )
loop
update()
repeat
Associated Commands
audioLength(), getChannelStatus(), loadAudio(), note2Freq(), playNote(), setClipper(), setFilter(), setPan(), setVolume(), startChannel(), stopChannel()