├── assets ├── audio │ ├── coin.mp3 │ ├── coin.ogg │ └── coin.wav ├── images │ ├── goldCoin.png │ ├── player.png │ ├── player_dead.png │ ├── player_duck.png │ ├── preloader-bar.png │ └── tiles_spritesheet.png └── tilemaps │ ├── level1.json │ └── level1.tmx ├── index.html ├── js ├── Boot.js ├── Game.js ├── Preload.js ├── gamecontroller.js ├── gamecontroller.min.js ├── main.js ├── phaser.2.1.2.min.js ├── phaser.js └── phaser.min.js ├── license-assets.txt └── license-source-code.txt /assets/audio/coin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/assets/audio/coin.mp3 -------------------------------------------------------------------------------- /assets/audio/coin.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/assets/audio/coin.ogg -------------------------------------------------------------------------------- /assets/audio/coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/assets/audio/coin.wav -------------------------------------------------------------------------------- /assets/images/goldCoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/assets/images/goldCoin.png -------------------------------------------------------------------------------- /assets/images/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/assets/images/player.png -------------------------------------------------------------------------------- /assets/images/player_dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/assets/images/player_dead.png -------------------------------------------------------------------------------- /assets/images/player_duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/assets/images/player_duck.png -------------------------------------------------------------------------------- /assets/images/preloader-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/assets/images/preloader-bar.png -------------------------------------------------------------------------------- /assets/images/tiles_spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/assets/images/tiles_spritesheet.png -------------------------------------------------------------------------------- /assets/tilemaps/level1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/assets/tilemaps/level1.json -------------------------------------------------------------------------------- /assets/tilemaps/level1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/assets/tilemaps/level1.tmx -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/index.html -------------------------------------------------------------------------------- /js/Boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/js/Boot.js -------------------------------------------------------------------------------- /js/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/js/Game.js -------------------------------------------------------------------------------- /js/Preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/js/Preload.js -------------------------------------------------------------------------------- /js/gamecontroller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/js/gamecontroller.js -------------------------------------------------------------------------------- /js/gamecontroller.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/js/gamecontroller.min.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/js/main.js -------------------------------------------------------------------------------- /js/phaser.2.1.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/js/phaser.2.1.2.min.js -------------------------------------------------------------------------------- /js/phaser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/js/phaser.js -------------------------------------------------------------------------------- /js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/js/phaser.min.js -------------------------------------------------------------------------------- /license-assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/license-assets.txt -------------------------------------------------------------------------------- /license-source-code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fariazz/phaser-sidescroller/HEAD/license-source-code.txt --------------------------------------------------------------------------------