| RenderContextDeltaTime Property |
Gets the elapsed time since the last frame.
Namespace: DigitalRune.GraphicsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public TimeSpan DeltaTime { get; set; }
Public Property DeltaTime As TimeSpan
Get
Set
public:
property TimeSpan DeltaTime {
TimeSpan get ();
void set (TimeSpan value);
}
member DeltaTime : TimeSpan with get, set
Property Value
Type:
TimeSpanThe elapsed time since the last frame.
Remarks
This value is equal to the delta time parameter which was passed to the most recent call of
Update(TimeSpan).
See Also