Difference between revisions of "B2.World:clearForces"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Call this after you are done with time steps to clear the forces. You normally call this after...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 +
'''Class:''' [[b2.World]]<br/>
 +
 
=== Description ===
 
=== Description ===
<br />
+
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. You normally call this after each call to `b2.World:step`,<br />
+
<syntaxhighlight lang="lua">
unless you are performing sub-steps. By default, forces will be automatically cleared, so you don&#039;t need to call this function.<br />
+
b2.World:clearForces()
<br />
+
</syntaxhighlight>
<source lang="lua">
+
 
= b2.World:clearForces()
+
 
</source>
+
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.
 +
 
 +
{{B2.World}}

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