Difference between revisions of "R3d.World:setEventListener"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 6: Line 6:
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
r3d.World:setEventListener(listener)
 
r3d.World:setEventListener(listener)
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===
Line 19: Line 19:
 
end
 
end
 
world:setEventListener(collisionsEventListener)
 
world:setEventListener(collisionsEventListener)
</source>
+
</syntaxhighlight>
  
 
{{R3d.World}}
 
{{R3d.World}}

Latest revision as of 15: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)