Difference between revisions of "R3d.World:testAABBOverlap"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2019.10<br/> '''Class:''' R3d.World<br/> === Description === Checks if two bodies AABB overlap. <source lang="lua"> (bool) = r3d...") |
m (Text replacement - "</source>" to "</syntaxhighlight>") |
||
(One intermediate revision by the same user not shown) | |||
Line 6: | Line 6: | ||
=== Description === | === Description === | ||
Checks if two bodies AABB overlap. | Checks if two bodies AABB overlap. | ||
− | < | + | <syntaxhighlight lang="lua"> |
(bool) = r3d.World:testAABBOverlap(bodyA, bodyB) | (bool) = r3d.World:testAABBOverlap(bodyA, bodyB) | ||
− | </ | + | </syntaxhighlight> |
=== Parameters === | === Parameters === | ||
Line 18: | Line 18: | ||
=== Example === | === Example === | ||
− | < | + | <syntaxhighlight lang="lua"> |
local c = 1 | local c = 1 | ||
function collisionsEventListener() | function collisionsEventListener() | ||
Line 27: | Line 27: | ||
end | end | ||
world:setEventListener(collisionsEventListener) | world:setEventListener(collisionsEventListener) | ||
− | </ | + | </syntaxhighlight> |
{{R3d.World}} | {{R3d.World}} |
Latest revision as of 14:32, 13 July 2023
Available since: Gideros 2019.10
Class: R3d.World
Description
Checks if two bodies AABB overlap.
(bool) = r3d.World:testAABBOverlap(bodyA, bodyB)
Parameters
bodyA: (body) the first body to test collisions with
bodyB: (body) the second body to test collisions with
Return values
Returns (boolean) either true or false
Example
local c = 1
function collisionsEventListener()
if world:testAABBOverlap(bodyA, bodyB) then
print("collision AABB", c)
c += 1
end
end
world:setEventListener(collisionsEventListener)
- R3d.World
- R3d.World.new
- R3d.World:createBallAndSocketJoint
- R3d.World:createBody
- R3d.World:createFixedJoint
- R3d.World:createHingeJoint
- R3d.World:createSliderJoint
- R3d.World:destroyBody
- R3d.World:destroyJoint
- R3d.World:raycast
- R3d.World:setEventListener
- R3d.World:step
- R3d.World:testAABBOverlap
- R3d.World:testCollision
- R3d.World:testOverlap