LeapMotionAPI.LeapMotionManager.Record C# (CSharp) 메소드

Record() 공개 메소드

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.
리턴 void
        public void Record(String path)
        {
            recorder = new RecordAnimation();
            recorder.RecordData(controller, path);
        }
    }