├── .eslintignore ├── .eslintrc.yml ├── CHANGELOG.md ├── README.md ├── dist ├── phaser-plugin-scene-watcher.esm.js └── phaser-plugin-scene-watcher.umd.js ├── package.json ├── preview.png ├── rollup.config.js ├── src └── main.js └── tests ├── .eslintrc.yml ├── assets ├── flares.json ├── flares.png ├── purple-planet.png └── raster-bw-64.png ├── index.html └── tests.js /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/README.md -------------------------------------------------------------------------------- /dist/phaser-plugin-scene-watcher.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/dist/phaser-plugin-scene-watcher.esm.js -------------------------------------------------------------------------------- /dist/phaser-plugin-scene-watcher.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/dist/phaser-plugin-scene-watcher.umd.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/package.json -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/preview.png -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/src/main.js -------------------------------------------------------------------------------- /tests/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/tests/.eslintrc.yml -------------------------------------------------------------------------------- /tests/assets/flares.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/tests/assets/flares.json -------------------------------------------------------------------------------- /tests/assets/flares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/tests/assets/flares.png -------------------------------------------------------------------------------- /tests/assets/purple-planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/tests/assets/purple-planet.png -------------------------------------------------------------------------------- /tests/assets/raster-bw-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/tests/assets/raster-bw-64.png -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-scene-watcher/HEAD/tests/tests.js --------------------------------------------------------------------------------