├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── configbuilder ├── index.html └── phaser-v3.61.js ├── dist ├── phaser-custom.js ├── phaser-custom.js.map ├── phaser-custom.min.js ├── phaser-custom.min.js.LICENSE.txt └── phaser-custom.min.js.map ├── package.json ├── phaser-core.js ├── phaser-custom-sprite-small-loader.js ├── phaser-custom-sprite.js ├── phaser-custom.js ├── phaser-full.js ├── test ├── dragon.png ├── index.html ├── indexcore.html └── indexsprite.html ├── webpack.build-log.json ├── webpack.config-both.js ├── webpack.config-core.js ├── webpack.config-full.js ├── webpack.config-sprite-small-loader.js ├── webpack.config-sprite.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/README.md -------------------------------------------------------------------------------- /configbuilder/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configbuilder/phaser-v3.61.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/configbuilder/phaser-v3.61.js -------------------------------------------------------------------------------- /dist/phaser-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/dist/phaser-custom.js -------------------------------------------------------------------------------- /dist/phaser-custom.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/dist/phaser-custom.js.map -------------------------------------------------------------------------------- /dist/phaser-custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/dist/phaser-custom.min.js -------------------------------------------------------------------------------- /dist/phaser-custom.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/dist/phaser-custom.min.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/phaser-custom.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/dist/phaser-custom.min.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/package.json -------------------------------------------------------------------------------- /phaser-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/phaser-core.js -------------------------------------------------------------------------------- /phaser-custom-sprite-small-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/phaser-custom-sprite-small-loader.js -------------------------------------------------------------------------------- /phaser-custom-sprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/phaser-custom-sprite.js -------------------------------------------------------------------------------- /phaser-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/phaser-custom.js -------------------------------------------------------------------------------- /phaser-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/phaser-full.js -------------------------------------------------------------------------------- /test/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/test/dragon.png -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/test/index.html -------------------------------------------------------------------------------- /test/indexcore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/test/indexcore.html -------------------------------------------------------------------------------- /test/indexsprite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/test/indexsprite.html -------------------------------------------------------------------------------- /webpack.build-log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/webpack.build-log.json -------------------------------------------------------------------------------- /webpack.config-both.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/webpack.config-both.js -------------------------------------------------------------------------------- /webpack.config-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/webpack.config-core.js -------------------------------------------------------------------------------- /webpack.config-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/webpack.config-full.js -------------------------------------------------------------------------------- /webpack.config-sprite-small-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/webpack.config-sprite-small-loader.js -------------------------------------------------------------------------------- /webpack.config-sprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/webpack.config-sprite.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/custom-build/HEAD/webpack.config.js --------------------------------------------------------------------------------