Interface TouchEventParser

The touch event parser. This is for the interoperability between the vanilla javascript and the pixijs event system.

interface TouchEventParser {
    alignCoordinateSystem: boolean;
    disabled: boolean;
    panDisabled: boolean;
    rotateDisabled: boolean;
    touchStateMachine: TouchInputStateMachine;
    zoomDisabled: boolean;
    disableStrategy(): void;
    enableStrategy(): void;
    setUp(): void;
    tearDown(): void;
}

Implemented by

Properties

alignCoordinateSystem: boolean
disabled: boolean
panDisabled: boolean
rotateDisabled: boolean
touchStateMachine: TouchInputStateMachine
zoomDisabled: boolean

Methods