Example

//@input Component.InteractionComponent interactionComponent

// Subscribe to the onTouchEnd event
var onTouchEndEvent = script.interactionComponent.onTouchEnd.add(function(touchEndEventArgs){
print("Touch End! Touched at: " + touchEndEventArgs.position + " for touchId: " + touchEndEventArgs.touchId);
});

// Unsubscribe from the onTouchEnd event
script.interactionComponent.onTouchEnd.remove(onTouchEndEvent);
interface TouchEndEventArgs {
    position: vec2;
    touchId: number;
    getTypeName(): string;
    isOfType(type): boolean;
    isSame(other): boolean;
}

Hierarchy (view full)

Properties

position: vec2

Description

The position of the touch on the screen. [0,0] being top left, and [1,1] being bottom right.

touchId: number

Description

Returns the ID of this specific touch. Useful for distinguishing between touches when multiple are occurring simultaneously.

Methods

  • Returns string

    Description

    Returns the name of this object's type.

  • Parameters

    • type: string

    Returns boolean

    Description

    Returns true if the object matches or derives from the passed in type.

  • Parameters

    Returns boolean

    Description

    Returns true if this object is the same as other. Useful for checking if two references point to the same thing.

Generated using TypeDoc