Trying to delay an audio loop so the sound is not back to back?
In your play function, you could do something like . . . .
{endOfAudio}
yield WaitForSeconds ( 3.0 ) ; // Wait 3 seconds
{playSoundCode}
This is probably the ‘easiest way’, but probably not the most efficient. But it works.