Click or drag to resize
DigitalRuneVariableStepTimerMaxDeltaTime Property
Gets or sets the maximal amount of time for a time step.

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 maximal size of a time step. The default value is MaxValue.
Exceptions
ExceptionCondition
ArgumentExceptionvalue is negative or 0.
Remarks

If a time step takes longer than MaxDeltaTime the time above this value is dropped. The dropped time will not be recovered in the next time step. The time is lost (see also: LostTime).

MinDeltaTimeDeltaTimeMaxDeltaTime.

See Also