Struct Clock.Proxy
Syntax
Constructors
Proxy(Clock)
Declaration
public Proxy(Clock clock)
Parameters
Type |
Name |
Description |
Clock |
clock |
|
Properties
deltaTime
The delta time since the last frame
Declaration
public TimeSpan deltaTime { get; }
Property Value
frameTime
The time at the beginning of the frame
Declaration
public TimeSpan frameTime { get; }
Property Value
lastFrameTime
The time at the beginning of the previous frame.
This is equivalent of doing frameTime - deltaTime
Declaration
public TimeSpan lastFrameTime { get; }
Property Value