Difference between revisions of "B2.World:destroyJoint"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<languages />
+
'''Available since:''' Gideros 2011.6<br/>
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Class:''' [[b2.World]]<br/>
'''<translate>Class</translate>:''' [[Special:MyLanguage/b2.World|b2.World]]<br/>
 
  
=== <translate>Description</translate> ===
+
=== Description ===
 
Destroys a joint. This may cause the connected bodies to begin colliding.
 
Destroys a joint. This may cause the connected bodies to begin colliding.
 +
<syntaxhighlight lang="lua">
 +
b2.World:destroyJoint(joint)
 +
</syntaxhighlight>
  
 
'''Warning:''' this function is locked during callbacks.
 
'''Warning:''' this function is locked during callbacks.
<source lang="lua">
 
b2.World:destroyJoint(joint)
 
</source>
 
  
=== <translate>Parameters</translate> ===
+
=== Parameters ===
'''joint''': (b2.Joint) <translate>joint to be destroyed</translate> <br/>
+
'''joint''': (b2.Joint) the joint to be destroyed<br/>
  
 
{{B2.World}}
 
{{B2.World}}

Latest revision as of 15:27, 13 July 2023

Available since: Gideros 2011.6
Class: b2.World

Description

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

b2.World:destroyJoint(joint)

Warning: this function is locked during callbacks.

Parameters

joint: (b2.Joint) the joint to be destroyed





LiquidFun