Example #1
0
 protected virtual void TransitionFinished()
 {
     Finished = true;
     if (TrackToPlay != null)
     {
         TrackToPlay.Volume = TargetVolume;
     }
     TrackToStop.Dispose();
 }
Example #2
0
 public virtual void ContinueToPlay()
 {
     _inPause = false;
     TrackToPlay.Play();
     TrackToStop.Play();
 }
Example #3
0
 public virtual void Pause()
 {
     _inPause = true;
     TrackToPlay.Pause();
     TrackToStop.Pause();
 }