Difference between revisions of "R3d.World:testCollision"

From GiderosMobile
(Created page with "'''Available since:''' Gideros 2019.10<br/> '''Class:''' R3d.World<br/> === Description === Checks collisions between two bodies. <source lang="lua"> r3d.World:testCollis...")
 
m (Text replacement - "<source" to "<syntaxhighlight")
Line 4: Line 4:
 
=== Description ===
 
=== Description ===
 
Checks collisions between two bodies.
 
Checks collisions between two bodies.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
r3d.World:testCollision(bodyA,bodyB,callback,category)
 
r3d.World:testCollision(bodyA,bodyB,callback,category)
 
</source>
 
</source>
Line 15: Line 15:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
function callback()
 
function callback()
 
print("xxx")
 
print("xxx")

Revision as of 15:30, 13 July 2023

Available since: Gideros 2019.10
Class: R3d.World

Description

Checks collisions between two bodies. <syntaxhighlight lang="lua"> r3d.World:testCollision(bodyA,bodyB,callback,category) </source>

Parameters

bodyA: (body) the body A optional
bodyB: (body) the body B optional
callback: (function) the callback function
category: (number) bit mask for collision filtering optional

Example

<syntaxhighlight lang="lua"> function callback() print("xxx") end world:testCollision(bodyA, callback) world:testCollision(bodyA, bodyB, callback, 1) world:testCollision(callback) </source>