Click or drag to resize
DigitalRuneHighPrecisionClockMaxDeltaTime Property
Gets the max limit for DeltaTime.

Namespace: DigitalRune.Game.Timing
Assembly: DigitalRune.Game (in DigitalRune.Game.dll) Version: 1.4.0.0 (1.4.0.14427)
Syntax
public TimeSpan MaxDeltaTime { get; set; }

Property Value

Type: TimeSpan
The max limit for DeltaTime. The default value is 100 ms.

Implements

IGameClockMaxDeltaTime
Remarks

DeltaTime is clamped to MaxDeltaTime. This is useful to avoid large time jumps when the game is paused in the debugger or waiting for a blocking operation where the user cannot interact with the game.

See Also