Arguments used with the InteractionComponent.onTouchMove event.

//@input Component.InteractionComponent interactionComponent

// Subscribe to the onTouchMove event
var onTouchMoveEvent = script.interactionComponent.onTouchMove.add(function(touchMoveEventArgs){
print("Touch Move! Touched at: " + touchMoveEventArgs.position + " for touchId: " + touchMoveEventArgs.touchId);
});

// Unsubscribe from the onTouchMove event
script.interactionComponent.onTouchMove.remove(onTouchMoveEvent);
interface TouchMoveEventArgs {
    position: vec2;
    touchId: number;
    getTypeName(): string;
    isOfType(type: string): boolean;
    isSame(other: ScriptObject): boolean;
}

Hierarchy (view full)

Properties

position: vec2

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

touchId: number

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

Methods

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

    Parameters

    • type: string

    Returns boolean

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

    Parameters

    Returns boolean