UnregisterEventHandler
From The Official Visionaire Studio: Adventure Game Engine Wiki
Revision as of 14:57, 26 November 2013 by Vis apiuser (talk)
Contents
unregisterEventHandler
Available since: v3.8
Unregisters an event handler function for a specific event.
Lua Syntax:
unregisterEventHandler(event, eventHandler)
Arguments
event
- "string" - The event which triggers the event handler to be called. Currently supported events: "mainLoop".
eventHandler
- "string" - The name of the lua function which is called when the event occurs.
Flags
Return Values
None.
Examples
Example 1: mainLoop
function onMainLoop()
-- do something
end
registerEventHandler("mainLoop", "onMainLoop")unregisterEventHandler("mainLoop", "onMainLoop")