@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
19 lines (18 loc) • 552 B
JavaScript
;
export var CorePlayerInput = /* @__PURE__ */ ((CorePlayerInput2) => {
CorePlayerInput2["LEFT"] = "left";
CorePlayerInput2["RIGHT"] = "right";
CorePlayerInput2["BACKWARD"] = "backward";
CorePlayerInput2["FORWARD"] = "forward";
CorePlayerInput2["RUN"] = "run";
CorePlayerInput2["JUMP"] = "jump";
return CorePlayerInput2;
})(CorePlayerInput || {});
export const CORE_PLAYER_INPUTS = [
"left" /* LEFT */,
"right" /* RIGHT */,
"backward" /* BACKWARD */,
"forward" /* FORWARD */,
"run" /* RUN */,
"jump" /* JUMP */
];