create-phaser-app
Version:
A boiler plate to start your phaser app with webpack4, babel7+ and Phaser 3
22 lines (20 loc) • 448 B
JavaScript
const BASE_WIDTH = 16;
const BASE_HEIGHT = 16;
const MARGIN = 0;
const SPACING = 0;
const COLOR = 0x00000000;
const RAW_FOLDER = 'raw';
const PROCESSED_FOLDER = 'processed';
const TEMP_FOLDER = '_00_temp_00_'; //because the tile extruder, that's why.
const INPUT_ONLY_PROP = 'InputOnly';
export {
BASE_WIDTH,
BASE_HEIGHT,
MARGIN,
SPACING,
COLOR,
RAW_FOLDER,
PROCESSED_FOLDER,
INPUT_ONLY_PROP,
TEMP_FOLDER
};