Difference between revisions of "love.timer.getMicroTime"

(changed seconds to microseconds)
(Undo revision 2091 by Kikito (Talk))
Line 8: Line 8:
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|number|t|The time passed (in microseconds)}}
+
{{param|number|t|The time passed (in seconds)}}
 
== See Also ==
 
== See Also ==
 
* [[parent::love.timer]]
 
* [[parent::love.timer]]
 
[[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 15:45, 2 March 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