LeapRecorder.Pause C# (CSharp) Method

Pause() public method

public Pause ( ) : void
return void
  public void Pause() {
    state = RecorderState.Paused;
  }

Usage Example

Example #1
0
 /** Stops playback or recording without resetting the frame counter. */
 public void PauseRecording()
 {
     recorder_.Pause();
 }