Is it necessary to play sounds that were loaded with media:newEventSound(soundfile) via timer.performWithDelay instead of playing them directly?
As in the documentation:
local soundID = media.newEventSound( "beep.caf" )
local playBeep = function()
media.playEventSound( soundID )
end
timer.performWithDelay( 1000, playBeep, 0 )
Is this also possible?
local soundID = media.newEventSound( "beep.caf" )
media.playEventSound( soundID )
[import]uid: 295 topic_id: 1500 reply_id: 301500[/import]