t3d. EventDispatcher

JavaScript events for custom objects.

Constructor

new EventDispatcher()

Methods

addEventListener(type, listener)

Adds a listener to an event type.
Parameters:
NameTypeDescription
typeStringThe type of event to listen to.
listenerfunctionThe function that gets called when the event is fired.

dispatchEvent(event)

Fire an event.
Parameters:
NameTypeDescription
eventObjectThe event that gets fired.

removeEventListener(type, listener)

Removes a listener from an event type.
Parameters:
NameTypeDescription
typeStringThe type of the listener that gets removed.
listenerfunctionThe listener function that gets removed.