R3d.World:setEventListener

From GiderosMobile
Revision as of 00:45, 22 January 2020 by MoKaLux (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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)