workadventure/front/src/Enum/EnvironmentVariable.ts

16 lines
569 B
TypeScript
Raw Normal View History

const DEBUG_MODE: boolean = process.env.DEBUG_MODE == "true";
2020-06-25 11:56:11 +02:00
const API_URL = (typeof(window) !== 'undefined' ? window.location.protocol : 'http:') + '//' + (process.env.API_URL || "api.workadventure.localhost");
2020-05-04 01:48:14 +02:00
const RESOLUTION = 3;
2020-04-27 18:12:36 +02:00
const ZOOM_LEVEL = 1/*3/4*/;
const POSITION_DELAY = 200; // Wait 200ms between sending position events
const MAX_EXTRAPOLATION_TIME = 250; // Extrapolate a maximum of 250ms if no new movement is sent by the player
export {
2020-04-13 19:40:10 +02:00
DEBUG_MODE,
API_URL,
2020-04-07 20:41:35 +02:00
RESOLUTION,
ZOOM_LEVEL,
POSITION_DELAY,
MAX_EXTRAPOLATION_TIME
2020-04-27 18:12:36 +02:00
}