├── .eslintignore ├── .eslintrc.yml ├── CHANGELOG.md ├── README.md ├── dist ├── phaser-plugin-debug-draw.esm.js └── phaser-plugin-debug-draw.umd.js ├── package.json ├── preview.png ├── rollup.config.js ├── src ├── colors.js └── main.js └── tests ├── .eslintrc.yml ├── assets ├── blue-planet.png ├── elephant.png ├── grid.png ├── mask.png ├── nebula.png └── starfield.png ├── index.html └── tests.js /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/README.md -------------------------------------------------------------------------------- /dist/phaser-plugin-debug-draw.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/dist/phaser-plugin-debug-draw.esm.js -------------------------------------------------------------------------------- /dist/phaser-plugin-debug-draw.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/dist/phaser-plugin-debug-draw.umd.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/package.json -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/preview.png -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/src/colors.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/src/main.js -------------------------------------------------------------------------------- /tests/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/tests/.eslintrc.yml -------------------------------------------------------------------------------- /tests/assets/blue-planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/tests/assets/blue-planet.png -------------------------------------------------------------------------------- /tests/assets/elephant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/tests/assets/elephant.png -------------------------------------------------------------------------------- /tests/assets/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/tests/assets/grid.png -------------------------------------------------------------------------------- /tests/assets/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/tests/assets/mask.png -------------------------------------------------------------------------------- /tests/assets/nebula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/tests/assets/nebula.png -------------------------------------------------------------------------------- /tests/assets/starfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/tests/assets/starfield.png -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-draw/HEAD/tests/tests.js --------------------------------------------------------------------------------