Difference between revisions of "love.timer.step"

m
m (Added new feature template)
 
(2 intermediate revisions by 2 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]]

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