Interface InputScheme

Defines an input scheme for the viewer.

interface InputScheme {
    onIdleAction(hit: InputAction): void;
    onKeyAction(key: number): boolean;
    onMainAction(hit: InputAction): void;
}

Implemented by

Methods