Difference between revisions of "R3d.World:setEventListener"
From GiderosMobile
(Created page with "'''Available since:''' Gideros 2019.10<br/> '''Class:''' R3d.World<br/> === Description === Sets the event listener for the collisions in the world. <source lang="lua"> r...") |
m (Text replacement - "</source>" to "</syntaxhighlight>") |
||
(One intermediate revision by the same user not shown) | |||
Line 4: | Line 4: | ||
=== Description === | === Description === | ||
Sets the event listener for the collisions in the world. | Sets the event listener for the collisions in the world. | ||
− | < | + | <syntaxhighlight lang="lua"> |
r3d.World:setEventListener(listener) | r3d.World:setEventListener(listener) | ||
− | </ | + | </syntaxhighlight> |
=== Parameters === | === Parameters === | ||
Line 12: | Line 12: | ||
=== Example === | === Example === | ||
− | < | + | <syntaxhighlight lang="lua"> |
local c = 1 | local c = 1 | ||
function collisionsEventListener() | function collisionsEventListener() | ||
Line 19: | Line 19: | ||
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
Sets the event listener for the collisions in the world.
r3d.World:setEventListener(listener)
Parameters
listener: (function) the function to listen for collisions in the world
Example
local c = 1
function collisionsEventListener()
print("collision", c)
c += 1
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