pauseTrackingFrames method

void pauseTrackingFrames()
inherited

Implementation

void pauseTrackingFrames() {
  // Stopwatch could continue running if we pause tracking in between a frame
  _stopwatch.stop();
  _stopwatch.reset();
  _isTrackingActive = false;
}