pause method

void pause()

Does not reset a sound position.

If sound is looped, when played again will wait loopDelay and play. If you do not want this, use stop().

Implementation

void pause() {
  if (_sound.looping.$1) _sound.looping = (false, 0);

  _sound.pause();
}