BolterLibrary.Navigation.Record C# (CSharp) Method

Record() public method

Starts recording waypoints on a new thread.
public Record ( int interval, string pathName, dynamic log = null ) : void
interval int Time in ms, between waypoints
pathName string Name of the path to save the waypoints to. A new on will be created, if it does not exist
log dynamic
return void
        public void Record(int interval, string pathName, dynamic log = null)
        {
            new Thread(() => RecordWaypoint(interval, pathName, log)).Start();
        }