├── .gitattributes ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── README.md ├── app.css ├── assets ├── audio │ ├── DOG.mp3 │ └── DOG.ogg ├── images │ ├── barBg.png │ └── loadBar.png ├── spritesheets │ ├── sheet1.json │ └── sheet1.png └── src │ ├── sheet1 │ ├── bubble │ │ ├── frame0.png │ │ ├── frame1.png │ │ ├── frame2.png │ │ ├── frame3.png │ │ ├── frame4.png │ │ ├── frame5.png │ │ └── frame6.png │ ├── horse │ │ ├── LICENSE.txt │ │ ├── frame_00_delay-0.05s.png │ │ ├── frame_01_delay-0.05s.png │ │ ├── frame_02_delay-0.05s.png │ │ ├── frame_03_delay-0.05s.png │ │ ├── frame_04_delay-0.05s.png │ │ ├── frame_05_delay-0.05s.png │ │ ├── frame_06_delay-0.05s.png │ │ ├── frame_07_delay-0.05s.png │ │ ├── frame_08_delay-0.05s.png │ │ ├── frame_09_delay-0.05s.png │ │ ├── frame_10_delay-0.05s.png │ │ └── frame_11_delay-0.05s.png │ └── phaser-logo.png │ └── spritesheets │ └── sheet1.tps ├── index.html ├── package.json ├── src ├── Game.ts ├── config │ └── preload.ts ├── phaser.d.ts └── scenes │ ├── Main.ts │ └── Preloader.ts ├── tsconfig.json ├── webpack.config.js ├── webpack.dev.js └── webpack.prod.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/README.md -------------------------------------------------------------------------------- /app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/app.css -------------------------------------------------------------------------------- /assets/audio/DOG.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/audio/DOG.mp3 -------------------------------------------------------------------------------- /assets/audio/DOG.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/audio/DOG.ogg -------------------------------------------------------------------------------- /assets/images/barBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/images/barBg.png -------------------------------------------------------------------------------- /assets/images/loadBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/images/loadBar.png -------------------------------------------------------------------------------- /assets/spritesheets/sheet1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/spritesheets/sheet1.json -------------------------------------------------------------------------------- /assets/spritesheets/sheet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/spritesheets/sheet1.png -------------------------------------------------------------------------------- /assets/src/sheet1/bubble/frame0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/bubble/frame0.png -------------------------------------------------------------------------------- /assets/src/sheet1/bubble/frame1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/bubble/frame1.png -------------------------------------------------------------------------------- /assets/src/sheet1/bubble/frame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/bubble/frame2.png -------------------------------------------------------------------------------- /assets/src/sheet1/bubble/frame3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/bubble/frame3.png -------------------------------------------------------------------------------- /assets/src/sheet1/bubble/frame4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/bubble/frame4.png -------------------------------------------------------------------------------- /assets/src/sheet1/bubble/frame5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/bubble/frame5.png -------------------------------------------------------------------------------- /assets/src/sheet1/bubble/frame6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/bubble/frame6.png -------------------------------------------------------------------------------- /assets/src/sheet1/horse/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/horse/LICENSE.txt -------------------------------------------------------------------------------- /assets/src/sheet1/horse/frame_00_delay-0.05s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/horse/frame_00_delay-0.05s.png -------------------------------------------------------------------------------- /assets/src/sheet1/horse/frame_01_delay-0.05s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/horse/frame_01_delay-0.05s.png -------------------------------------------------------------------------------- /assets/src/sheet1/horse/frame_02_delay-0.05s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/horse/frame_02_delay-0.05s.png -------------------------------------------------------------------------------- /assets/src/sheet1/horse/frame_03_delay-0.05s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/horse/frame_03_delay-0.05s.png -------------------------------------------------------------------------------- /assets/src/sheet1/horse/frame_04_delay-0.05s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/horse/frame_04_delay-0.05s.png -------------------------------------------------------------------------------- /assets/src/sheet1/horse/frame_05_delay-0.05s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/horse/frame_05_delay-0.05s.png -------------------------------------------------------------------------------- /assets/src/sheet1/horse/frame_06_delay-0.05s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/horse/frame_06_delay-0.05s.png -------------------------------------------------------------------------------- /assets/src/sheet1/horse/frame_07_delay-0.05s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/horse/frame_07_delay-0.05s.png -------------------------------------------------------------------------------- /assets/src/sheet1/horse/frame_08_delay-0.05s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/horse/frame_08_delay-0.05s.png -------------------------------------------------------------------------------- /assets/src/sheet1/horse/frame_09_delay-0.05s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/horse/frame_09_delay-0.05s.png -------------------------------------------------------------------------------- /assets/src/sheet1/horse/frame_10_delay-0.05s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/horse/frame_10_delay-0.05s.png -------------------------------------------------------------------------------- /assets/src/sheet1/horse/frame_11_delay-0.05s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/horse/frame_11_delay-0.05s.png -------------------------------------------------------------------------------- /assets/src/sheet1/phaser-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/sheet1/phaser-logo.png -------------------------------------------------------------------------------- /assets/src/spritesheets/sheet1.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/assets/src/spritesheets/sheet1.tps -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/package.json -------------------------------------------------------------------------------- /src/Game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/src/Game.ts -------------------------------------------------------------------------------- /src/config/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/src/config/preload.ts -------------------------------------------------------------------------------- /src/phaser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/src/phaser.d.ts -------------------------------------------------------------------------------- /src/scenes/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/src/scenes/Main.ts -------------------------------------------------------------------------------- /src/scenes/Preloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/src/scenes/Preloader.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtravO/phaser3-typescript-template/HEAD/webpack.prod.js --------------------------------------------------------------------------------