Difference between revisions of "love.timer.getMicroTime"

(Undo revision 2091 by Kikito (Talk))
(Added link to love.timer.getTime)
Line 11: Line 11:
 
== See Also ==
 
== See Also ==
 
* [[parent::love.timer]]
 
* [[parent::love.timer]]
 +
* [[love.timer.getTime]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Returns the amount of time passed since an unspecified time. The time is accurate to the microsecond, and is limited to 24 hours.}}
 
{{#set:Description=Returns the amount of time passed since an unspecified time. The time is accurate to the microsecond, and is limited to 24 hours.}}

Revision as of 10:14, 14 August 2010

Returns the amount of time passed since an unspecified time. The time is accurate to the microsecond, and is limited to 24 hours.

Function

Synopsis

t = love.timer.getMicroTime( )

Arguments

None.

Returns

number t
The time passed (in seconds)

See Also