stop method
void
stop()
Resets a sound position.
If sound is looped, when played again will NOT wait loopDelay
and play. If you do not want this, use pause()
.
Implementation
void stop() {
if (_sound.looping.$1) _sound.looping = (false, 0);
_sound.stop();
}