Difference between revisions of "World:update"

(Add iterations parameters)
Line 3: Line 3:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
World:update( dt )
+
World:update( dt, velocityiterations, positioniterations )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
 
{{param|number|dt|The time (in seconds) to advance the physics simulation.}}
 
{{param|number|dt|The time (in seconds) to advance the physics simulation.}}
 +
{{New feature|0.11.0|
 +
{{param|number|velocityiterations (8)|The maximum number of steps used to determine the new velocities when resolving a collision.}}
 +
{{param|number|positioniterations (3)|The maximum number of steps used to determine the new positions when resolving a collision.}}
 +
|110}}
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.

Revision as of 15:02, 7 January 2018

Update the state of the world.

Function

Synopsis

World:update( dt, velocityiterations, positioniterations )

Arguments

number dt
The time (in seconds) to advance the physics simulation.
Available since LÖVE 0.11.0
number velocityiterations (8)
The maximum number of steps used to determine the new velocities when resolving a collision.
number positioniterations (3)
The maximum number of steps used to determine the new positions when resolving a collision.

Returns

Nothing.

See Also


Other Languages