├── .eslintrc.yml ├── .npmignore ├── README.md ├── bower.json ├── example ├── assets │ ├── backdrop.jpg │ ├── cloud.png │ ├── hotdog.png │ ├── loop.mp3 │ └── loop.ogg ├── dat.gui.js ├── index.coffee ├── index.js └── phaser.js ├── index.coffee ├── index.html ├── index.js ├── package.json └── screenshot.png /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.coffee 2 | *.html 3 | *.png 4 | bower.json 5 | example/ 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/bower.json -------------------------------------------------------------------------------- /example/assets/backdrop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/example/assets/backdrop.jpg -------------------------------------------------------------------------------- /example/assets/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/example/assets/cloud.png -------------------------------------------------------------------------------- /example/assets/hotdog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/example/assets/hotdog.png -------------------------------------------------------------------------------- /example/assets/loop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/example/assets/loop.mp3 -------------------------------------------------------------------------------- /example/assets/loop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/example/assets/loop.ogg -------------------------------------------------------------------------------- /example/dat.gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/example/dat.gui.js -------------------------------------------------------------------------------- /example/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/example/index.coffee -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/example/index.js -------------------------------------------------------------------------------- /example/phaser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/example/phaser.js -------------------------------------------------------------------------------- /index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/index.coffee -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-game-gui/HEAD/screenshot.png --------------------------------------------------------------------------------