Exemplo n.º 1
0
 public void Seek(double time)
 {
     _cannext = false;
     uniAudio.Seek(time);
     _fxpos = 0;
     if (Playfx)
     {
         while (fxlist[_fxpos].Time <= uniAudio.Position * 1000 && _fxpos < fxlist.Count)
         {
             _fxpos++;
         }
     }
     _cannext = true;
 }