Reorganized file tree, made Checkerboard a child of Layer

This commit is contained in:
unsettledgames
2021-11-11 23:13:15 +01:00
parent 1d33259abf
commit aed5f45e64
13 changed files with 107 additions and 80 deletions

9
js/data/consts.js Normal file
View File

@@ -0,0 +1,9 @@
const MIN_Z_INDEX = -5000;
const MAX_Z_INDEX = 5000;
// Index of the first layer the user can use in the layers array
const firstUserLayerIndex = 2;
// Number of layers that are only used by the editor
const nAppLayers = 3;
const MIN_ZOOM_LEVEL = 0.5;