Difference between revisions of "EventDispatcher:removeEventListener"
From GiderosMobile
| (9 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | |||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
| + | '''Class:''' [[EventDispatcher]]<br/> | ||
| + | |||
=== Description === | === Description === | ||
| − | + | Removes a listener from the [[EventDispatcher]] object. | |
| − | Removes a listener from the [[ | + | <syntaxhighlight lang="lua"> |
| − | the same arguments | + | EventDispatcher:removeEventListener(type,listener,data) |
| − | registered, a call to this function has no effect. | + | </syntaxhighlight> |
| − | + | ||
| − | + | '''removeEventListener()''' function expects the same arguments than the '''addEventListener()''' to remove the event. | |
| − | + | ||
| − | + | If there is no matching listener registered, a call to this function has no effect. | |
| + | |||
=== Parameters === | === Parameters === | ||
| − | '''type''': (string) | + | '''type''': (string) the type of event<br/> |
| − | '''listener''': (function) | + | '''listener''': (function) the listener object to remove<br/> |
| − | '''data''': (any) | + | '''data''': (any) the data parameter that is used while registering the event<br/> |
| + | |||
| + | === Example === | ||
| + | <syntaxhighlight lang="lua"> | ||
| + | function Scene:init() | ||
| + | -- scene | ||
| + | -- audio | ||
| + | -- ... | ||
| + | -- event listeners: | ||
| + | self:addEventListener(Event.ENTER_FRAME, self.update, self) | ||
| + | -- ... | ||
| + | end | ||
| + | |||
| + | -- ... | ||
| + | |||
| + | function Scene:someStuff() | ||
| + | -- ... | ||
| + | self:removeEventListener(Event.ENTER_FRAME, self.update, self) | ||
| + | -- ... | ||
| + | end | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | {{EventDispatcher}} | ||
Latest revision as of 19:40, 4 December 2025
Available since: Gideros 2011.6
Class: EventDispatcher
Description
Removes a listener from the EventDispatcher object.
EventDispatcher:removeEventListener(type,listener,data)
removeEventListener() function expects the same arguments than the addEventListener() to remove the event.
If there is no matching listener registered, a call to this function has no effect.
Parameters
type: (string) the type of event
listener: (function) the listener object to remove
data: (any) the data parameter that is used while registering the event
Example
function Scene:init()
-- scene
-- audio
-- ...
-- event listeners:
self:addEventListener(Event.ENTER_FRAME, self.update, self)
-- ...
end
-- ...
function Scene:someStuff()
-- ...
self:removeEventListener(Event.ENTER_FRAME, self.update, self)
-- ...
end