Difference between revisions of "love.timer.step"

m (Added new feature template)
 
(3 intermediate revisions by 3 users not shown)
Line 4: Line 4:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
love.timer.step( )
+
dt = love.timer.step( )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
Nothing.
+
{{New_feature|11.0|
 +
{{param|number|dt|The time passed (in seconds).}} }}
 
== See Also ==
 
== See Also ==
 
* [[parent::love.timer]]
 
* [[parent::love.timer]]
 +
* [[love.run]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Measures the time between two frames.}}
 
{{#set:Description=Measures the time between two frames.}}

Latest revision as of 11:31, 3 January 2019

Measures the time between two frames. Calling this changes the return value of love.timer.getDelta.

Function

Synopsis

dt = love.timer.step( )

Arguments

None.

Returns

Available since LÖVE 11.0
number dt
The time passed (in seconds).

See Also


Other Languages