BolterLibrary.Navigation.Record C# (CSharp) Метод

Record() публичный Метод

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
Результат void
        public void Record(int interval, string pathName, dynamic log = null)
        {
            new Thread(() => RecordWaypoint(interval, pathName, log)).Start();
        }