Difference between revisions of "B2.World:destroyJoint"

From GiderosMobile
Line 3: Line 3:
 
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
 
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/b2.World|b2.World]]<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/b2.World|b2.World]]<br/>
 +
 
=== <translate>Description</translate> ===
 
=== <translate>Description</translate> ===
<translate>
+
Destroys a joint. This may cause the connected bodies to begin colliding.
Destroy a joint. This may cause the connected bodies to begin colliding. <br />
+
 
<br />
+
'''Warning:''' this function is locked during callbacks.
'''Warning:''' This function is locked during callbacks.<br />
 
<br /></translate>
 
 
<source lang="lua">
 
<source lang="lua">
b2.World:destroyJoint(joint)
+
b2.World:destroyJoint(joint)
 
</source>
 
</source>
<br />
+
 
 
=== <translate>Parameters</translate> ===
 
=== <translate>Parameters</translate> ===
 
'''joint''': (b2.Joint) <translate>joint to be destroyed</translate> <br/>
 
'''joint''': (b2.Joint) <translate>joint to be destroyed</translate> <br/>
 +
 +
{{B2.World}}

Revision as of 16:17, 18 February 2020


Available since: Gideros 2011.6
Class: b2.World

Description

Destroys a joint. This may cause the connected bodies to begin colliding.

Warning: this function is locked during callbacks.

b2.World:destroyJoint(joint)

Parameters

joint: (b2.Joint) joint to be destroyed





LiquidFun