LeapRecorder.Stop C# (CSharp) Method

Stop() public method

public Stop ( ) : void
return void
  public void Stop() {
    state = RecorderState.Stopped;
    frame_index_ = 0.0f;
  }

Usage Example

Example #1
0
    void Start()
    {
        // Initialize hand lookup tables.
        hand_graphics_ = new Dictionary <int, HandModel>();
        hand_physics_  = new Dictionary <int, HandModel>();

        if (leap_controller_ == null)
        {
            Debug.LogWarning(
                "Cannot connect to controller. Make sure you have Leap Motion v2.0+ installed");
        }

        recorder_.Stop();
    }
All Usage Examples Of LeapRecorder::Stop