├── .babelrc ├── .browserslistrc ├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── pwa ├── icons │ ├── icons-192.png │ └── icons-512.png ├── manifest.json └── sw.js ├── readme ├── enable3d-logo.png ├── header-es6.png ├── header.png ├── pwa.png └── screenshot.png ├── src ├── assets │ └── img │ │ └── phaser-logo.png ├── favicon.ico ├── index.html └── scripts │ ├── game.js │ ├── objects │ ├── fpsText.js │ └── phaserLogo.js │ └── scenes │ ├── mainScene.js │ └── preloadScene.js ├── tsconfig.json └── webpack ├── credits.js ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/.babelrc -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.25% 2 | not dead -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/package.json -------------------------------------------------------------------------------- /pwa/icons/icons-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/pwa/icons/icons-192.png -------------------------------------------------------------------------------- /pwa/icons/icons-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/pwa/icons/icons-512.png -------------------------------------------------------------------------------- /pwa/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/pwa/manifest.json -------------------------------------------------------------------------------- /pwa/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/pwa/sw.js -------------------------------------------------------------------------------- /readme/enable3d-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/readme/enable3d-logo.png -------------------------------------------------------------------------------- /readme/header-es6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/readme/header-es6.png -------------------------------------------------------------------------------- /readme/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/readme/header.png -------------------------------------------------------------------------------- /readme/pwa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/readme/pwa.png -------------------------------------------------------------------------------- /readme/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/readme/screenshot.png -------------------------------------------------------------------------------- /src/assets/img/phaser-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/src/assets/img/phaser-logo.png -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/src/index.html -------------------------------------------------------------------------------- /src/scripts/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/src/scripts/game.js -------------------------------------------------------------------------------- /src/scripts/objects/fpsText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/src/scripts/objects/fpsText.js -------------------------------------------------------------------------------- /src/scripts/objects/phaserLogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/src/scripts/objects/phaserLogo.js -------------------------------------------------------------------------------- /src/scripts/scenes/mainScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/src/scripts/scenes/mainScene.js -------------------------------------------------------------------------------- /src/scripts/scenes/preloadScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/src/scripts/scenes/preloadScene.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack/credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/webpack/credits.js -------------------------------------------------------------------------------- /webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/webpack/webpack.common.js -------------------------------------------------------------------------------- /webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/webpack/webpack.dev.js -------------------------------------------------------------------------------- /webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandeu/phaser-project-template-es6/HEAD/webpack/webpack.prod.js --------------------------------------------------------------------------------