UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

17 lines (16 loc) 345 B
export enum CorePlayerInput { LEFT = 'left', RIGHT = 'right', BACKWARD = 'backward', FORWARD = 'forward', RUN = 'run', JUMP = 'jump', } export const CORE_PLAYER_INPUTS: CorePlayerInput[] = [ CorePlayerInput.LEFT, CorePlayerInput.RIGHT, CorePlayerInput.BACKWARD, CorePlayerInput.FORWARD, CorePlayerInput.RUN, CorePlayerInput.JUMP, ];