Difference between revisions of "love.timer"
m (1 revision: Imported docs from potato.) |
|||
Line 1: | Line 1: | ||
− | + | Provides an interface to the user's clock. | |
== Functions == | == Functions == | ||
{{#ask: [[Category:Functions]] [[parent::love.timer]] | {{#ask: [[Category:Functions]] [[parent::love.timer]] | ||
Line 7: | Line 7: | ||
}} | }} | ||
[[Category:Modules]] | [[Category:Modules]] | ||
− | {{#set:Description=}} | + | {{#set:Description=Provides an interface to the user's clock.}} |
== See Also == | == See Also == | ||
* [[parent::love]] | * [[parent::love]] |
Revision as of 16:17, 14 February 2010
Provides an interface to the user's clock.
Functions
love.timer.getAverageDelta | Returns the average delta time over the last second. |
love.timer.getDelta | Returns the time between the last two frames. |
love.timer.getFPS | Returns the current frames per second. |
love.timer.getMicroTime | Returns the value of a timer with microsecond precision. |
love.timer.getTime | Returns the precise amount of time since some time in the past. |
love.timer.sleep | Pauses the current thread for the specified amount of time. |
love.timer.step | Measures the time between two frames. |