LeapMotionAPI.LeapMotionManager.Record C# (CSharp) Method

Record() public method

Instantiate the class that write the animation to a file.
public Record ( String path ) : void
path String Destination path where we will write the data.
return void
        public void Record(String path)
        {
            recorder = new RecordAnimation();
            recorder.RecordData(controller, path);
        }
    }