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")
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.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
r3d.World:setEventListener(listener)
 
r3d.World:setEventListener(listener)
 
</source>
 
</source>
Line 12: Line 12:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
local c = 1
 
local c = 1
 
function collisionsEventListener()
 
function collisionsEventListener()

Revision as of 15:30, 13 July 2023

Available since: Gideros 2019.10
Class: R3d.World

Description

Sets the event listener for the collisions in the world. <syntaxhighlight lang="lua"> r3d.World:setEventListener(listener) </source>

Parameters

listener: (function) the function to listen for collisions in the world

Example

<syntaxhighlight lang="lua"> local c = 1 function collisionsEventListener() print("collision", c) c += 1 end world:setEventListener(collisionsEventListener) </source>