lovr.timer.getDelta
EditReturns the time between the last two frames. This is the same value as the dt
argument provided to lovr.update
.
dt = lovr.timer.getDelta()
Arguments
None
Returns
Name | Type | Description |
dt | number | The delta time, in seconds. |
Notes
The return value of this function will remain the same until lovr.timer.step
is called. This function should not be used to measure times for game behavior or benchmarking, use lovr.timer.getTime
for that.
See also
lovr.timer.getTime
lovr.update
lovr.timer