Difference between revisions of "R3d.World:destroyBody"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(2 intermediate revisions by 2 users not shown)
Line 4: Line 4:
 
=== Description ===
 
=== Description ===
 
Destroys a rigid body in the dynamics world.
 
Destroys a rigid body in the dynamics world.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
r3d.World:destroyBody(body)
 
r3d.World:destroyBody(body)
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===
Line 12: Line 12:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
</source>
+
stage:addEventListener(Event.ENTER_FRAME, function(e)
 +
world:destroyBody(body)
 +
world:step(e.deltaTime)
 +
end
 +
</syntaxhighlight>
  
 
{{R3d.World}}
 
{{R3d.World}}

Latest revision as of 15:32, 13 July 2023

Available since: Gideros 2019.10
Class: R3d.World

Description

Destroys a rigid body in the dynamics world.

r3d.World:destroyBody(body)

Parameters

body: (body) the body to destroy

Example

stage:addEventListener(Event.ENTER_FRAME, function(e)
	world:destroyBody(body)
	world:step(e.deltaTime)
end