Engine API Reference
    Preparing search index...

    Class ElementTouchEvent

    Represents a TouchEvent fired on a ElementComponent.

    Hierarchy (View Summary)

    Index

    Constructors

    • Create an instance of an ElementTouchEvent.

      Parameters

      • event: TouchEvent

        The TouchEvent that was originally raised.

      • element: ElementComponent

        The ElementComponent that this event was originally raised on.

      • camera: CameraComponent

        The CameraComponent that this event was originally raised via.

      • x: number

        The x coordinate of the touch that triggered the event.

      • y: number

        The y coordinate of the touch that triggered the event.

      • touch: Touch

        The touch object that triggered the event.

      Returns ElementTouchEvent

    Properties

    The CameraComponent that this event was originally raised via.

    changedTouches: Touch[]

    The Touch objects representing individual points of contact whose states changed between the previous touch event and this one.

    The ElementComponent that this event was originally raised on.

    MouseEvent or TouchEvent that was originally raised.

    touch: Touch

    The touch object that triggered the event.

    touches: Touch[]

    The Touch objects representing all current points of contact with the surface, regardless of target or changed status.

    Methods

    • Stop propagation of the event to parent ElementComponents. This also stops propagation of the event to other event listeners of the original DOM Event.

      Returns void