Stop() public method

public Stop ( ) : void
return void
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();
    }
Example #2
0
 /** Stops recording or playback and resets the frame counter to the beginning. */
 public void StopRecording()
 {
     recorder_.Stop();
 }