public void Update(double time, bool isFixedRateUpdate) { this.isFixedRateUpdate = isFixedRateUpdate; clock.Current = time; updateOverlay(); ScreenLayerManager.Update(); }
public void Update(double time, bool isFixedRateUpdate) { IsFixedRateUpdate = isFixedRateUpdate; clock.AdvanceFrameTo(time); updateOverlay(); ScreenLayerManager.Update(IsFixedRateUpdate); }