├── .gitignore ├── README.md ├── assets └── images │ ├── 540x960-guide.png │ ├── 640x960-guide.png │ ├── button.png │ ├── fullscreen.png │ ├── logo.png │ ├── quit.png │ └── sound.png ├── favicon.ico ├── index.html ├── main.js ├── package.json ├── scenes ├── handler.js ├── hub.js ├── preload.js └── title.js └── utils ├── buttons.js └── screen.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/540x960-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/assets/images/540x960-guide.png -------------------------------------------------------------------------------- /assets/images/640x960-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/assets/images/640x960-guide.png -------------------------------------------------------------------------------- /assets/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/assets/images/button.png -------------------------------------------------------------------------------- /assets/images/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/assets/images/fullscreen.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/assets/images/quit.png -------------------------------------------------------------------------------- /assets/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/assets/images/sound.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/package.json -------------------------------------------------------------------------------- /scenes/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/scenes/handler.js -------------------------------------------------------------------------------- /scenes/hub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/scenes/hub.js -------------------------------------------------------------------------------- /scenes/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/scenes/preload.js -------------------------------------------------------------------------------- /scenes/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/scenes/title.js -------------------------------------------------------------------------------- /utils/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/utils/buttons.js -------------------------------------------------------------------------------- /utils/screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimozurdo/mobile-game-base-phaser3/HEAD/utils/screen.js --------------------------------------------------------------------------------