| VariableStepTimerMaxDeltaTime Property |
Gets or sets the maximal amount of time for a time step.
Namespace: DigitalRune.Game.TimingAssembly: DigitalRune.Game (in DigitalRune.Game.dll) Version: 1.4.0.0 (1.4.0.14427)
Syntax public TimeSpan MaxDeltaTime { get; set; }
Public Property MaxDeltaTime As TimeSpan
Get
Set
public:
property TimeSpan MaxDeltaTime {
TimeSpan get ();
void set (TimeSpan value);
}
member MaxDeltaTime : TimeSpan with get, set
Property Value
Type:
TimeSpan
The maximal size of a time step. The default value is
MaxValue.
Exceptions 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).
MinDeltaTime ≤ DeltaTime ≤ MaxDeltaTime.
See Also