Stop() public method

Stops streaming to the track, which will then be available to other contributors.
public Stop ( ) : void
return void
Esempio n. 1
0
 void OnDisable()
 {
     if (_streamToTrack != null)
     {
         _streamToTrack.Stop();
     }
 }