Config.js 302 Bytes
Newer Older
1 2 3
var Config = {
  GAZE_SERVER_URL: "ws://localhost:8001/gaze",
  TARGET_FPS: 120,
4
  SHOW_DEBUG_INFO: true,
5 6 7 8
  USE_MOUSE_INPUT_AS_FAKE_GAZE_DATA: true,
  USE_LOGGER: true,
  SCREEN_WIDTH: screen.width,
  SCREEN_HEIGHT: screen.height,
9
  GAME_VERSION: 0.1,
10 11 12 13 14
};

Object.freeze(Config);

export default Config;