GestureHandlers is the means by which a programmer can attach to an Entity code to run in response to each of the gestures that JetLag supports.

Constructors

Properties

mouseHover?: ((actor, worldCoords) => boolean)

code to run when the mouse hovers over the actor

Type declaration

    • (actor, worldCoords): boolean
    • code to run when the mouse hovers over the actor

      Parameters

      • actor: Actor
      • worldCoords: {
            x: number;
            y: number;
        }
        • x: number
        • y: number

      Returns boolean

mouseUnHover?: ((actor) => boolean)

code to run when the mouse stops hovering over the actor

Type declaration

    • (actor): boolean
    • code to run when the mouse stops hovering over the actor

      Parameters

      Returns boolean

panMove?: ((actor, worldCoords) => boolean)

code to run on a pan move event

Type declaration

    • (actor, worldCoords): boolean
    • code to run on a pan move event

      Parameters

      • actor: Actor
      • worldCoords: {
            x: number;
            y: number;
        }
        • x: number
        • y: number

      Returns boolean

panStart?: ((actor, worldCoords) => boolean)

code to run on a pan start event

Type declaration

    • (actor, worldCoords): boolean
    • code to run on a pan start event

      Parameters

      • actor: Actor
      • worldCoords: {
            x: number;
            y: number;
        }
        • x: number
        • y: number

      Returns boolean

panStop?: ((actor, worldCoords) => boolean)

code to run on a pan stop event

Type declaration

    • (actor, worldCoords): boolean
    • code to run on a pan stop event

      Parameters

      • actor: Actor
      • worldCoords: {
            x: number;
            y: number;
        }
        • x: number
        • y: number

      Returns boolean

swipe?: ((actor, point1, point2, time) => boolean)

code to run on a swipe event

Type declaration

    • (actor, point1, point2, time): boolean
    • code to run on a swipe event

      Parameters

      • actor: Actor
      • point1: {
            x: number;
            y: number;
        }
        • x: number
        • y: number
      • point2: {
            x: number;
            y: number;
        }
        • x: number
        • y: number
      • time: number

      Returns boolean

tap?: ((actor, worldCoords) => boolean)

code to run when this actor is tapped

Type declaration

    • (actor, worldCoords): boolean
    • code to run when this actor is tapped

      Parameters

      • actor: Actor
      • worldCoords: {
            x: number;
            y: number;
        }
        • x: number
        • y: number

      Returns boolean

touchDown?: ((actor, worldCoords) => boolean)

code to run on a down press event

Type declaration

    • (actor, worldCoords): boolean
    • code to run on a down press event

      Parameters

      • actor: Actor
      • worldCoords: {
            x: number;
            y: number;
        }
        • x: number
        • y: number

      Returns boolean

touchUp?: ((actor, worldCoords) => boolean)

code to run on a release event

Type declaration

    • (actor, worldCoords): boolean
    • code to run on a release event

      Parameters

      • actor: Actor
      • worldCoords: {
            x: number;
            y: number;
        }
        • x: number
        • y: number

      Returns boolean