Interface KMTEventParser

interface KMTEventParser {
    alignCoordinateSystem: boolean;
    debugMode: boolean;
    disabled: boolean;
    stateMachine: KmtInputStateMachine<
        KmtInputEventMapping,
        KmtInputContext,
        KmtInputStates,
    >;
    setUp(): void;
    tearDown(): void;
}

Implemented by

Properties

alignCoordinateSystem: boolean
debugMode: boolean
disabled: boolean

Methods