Difference between revisions of "R3d.World:destroyBody"

From GiderosMobile
Line 13: Line 13:
 
=== Example ===
 
=== Example ===
 
<source lang="lua">
 
<source lang="lua">
 +
stage:addEventListener(Event.ENTER_FRAME, function(e)
 +
world:destroyBody(body)
 +
world:step(e.deltaTime)
 +
end
 
</source>
 
</source>
  
 
{{R3d.World}}
 
{{R3d.World}}

Revision as of 23:58, 21 January 2020

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