Beispiel #1
0
 public void Playpause()
 {
     if (!IsPausing)
     {
         CamLeft.Playpause();
         CamRight.Playpause();
         IsPausing = true;
     }
     else
     {
         CamLeft.Playstart();
         CamRight.Playstart();
         IsPausing = false;
     }
 }