Difference between revisions of "B2.World:clearForces"

From GiderosMobile
(language)
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Call this after you are done with time steps to clear the forces.
 
Call this after you are done with time steps to clear the forces.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
b2.World:clearForces()
 
b2.World:clearForces()
</source>
+
</syntaxhighlight>
  
  

Latest revision as of 15:27, 13 July 2023

Available since: Gideros 2011.6
Class: b2.World

Description

Call this after you are done with time steps to clear the forces.

b2.World:clearForces()


You normally call this after each call to b2.World:step, unless you are performing sub-steps.

By default, forces will be automatically cleared, so you don't need to call this function.





LiquidFun