Difference between revisions of "R3d.World:testCollision"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
(wip)
Line 16: Line 16:
 
=== Example ===
 
=== Example ===
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
function callback()
+
function callback(e)
print("xxx")
+
print(e.fixture1, e.body1)
 +
print(e.fixture2, e.body2)
 +
print(e.body1.id, e.body2.id)
 
end
 
end
 
world:testCollision(bodyA, callback)
 
world:testCollision(bodyA, callback)

Revision as of 00:22, 16 December 2025

Available since: Gideros 2019.10
Class: R3d.World

Description

Checks collisions between two bodies.

r3d.World:testCollision(bodyA,bodyB,callback,category)

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

function callback(e)
	print(e.fixture1, e.body1)
	print(e.fixture2, e.body2)
	print(e.body1.id, e.body2.id)
end
world:testCollision(bodyA, callback)
world:testCollision(bodyA, bodyB, callback, 1)
world:testCollision(callback)