pc.ElementInputEvent
Represents an input event fired on a pc.ElementComponent. When an event is raised on an ElementComponent it bubbles up to its parent ElementComponents unless we call stopPropagation().
Summary
Properties
| camera | The CameraComponent that this event was originally raised via. |
| element | The ElementComponent that this event was originally raised on. |
| event | The MouseEvent or TouchEvent that was originally raised. |
Methods
| stopPropagation | Stop propagation of the event to parent pc.ElementComponents. |
Details
Constructor
ElementInputEvent(event, element, camera)
Create an instance of a pc.ElementInputEvent.
Parameters
| event | MouseEvent, TouchEvent | The MouseEvent or TouchEvent that was originally raised. |
| element | pc.ElementComponent | The ElementComponent that this event was originally raised on. |
| camera | pc.CameraComponent | The CameraComponent that this event was originally raised via. |
Properties
Methods
stopPropagation()
Stop propagation of the event to parent pc.ElementComponents. This also stops propagation of the event to other event listeners of the original DOM Event.