tryAddWaypoint() public method

public tryAddWaypoint ( RecordingThresholds thresholds ) : void
thresholds RecordingThresholds
return void
 //Called via MonoBehavious.InvokeRepeating
 public void updateCurrentTrack()
 {
     //Debug.Log("TrackManager updateCurrentTrack()");
     if (recording)
     {
         if (allowRecording)
         {
             activeTrack.tryAddWaypoint(ChangeThresholds);
         }
         else
         {
             stopRecording();
         }
     }
 }