├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── index.html ├── package.json ├── src ├── assets │ └── logo.png ├── index.js ├── phaser-core.js ├── phaser-custom-sprite-loader.js ├── phaser-custom.js └── phaser-full.js └── webpack ├── base.js └── prod.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/src/index.js -------------------------------------------------------------------------------- /src/phaser-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/src/phaser-core.js -------------------------------------------------------------------------------- /src/phaser-custom-sprite-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/src/phaser-custom-sprite-loader.js -------------------------------------------------------------------------------- /src/phaser-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/src/phaser-custom.js -------------------------------------------------------------------------------- /src/phaser-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/src/phaser-full.js -------------------------------------------------------------------------------- /webpack/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/webpack/base.js -------------------------------------------------------------------------------- /webpack/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonstorm/phaser3-project-template-custom-build/HEAD/webpack/prod.js --------------------------------------------------------------------------------