├── .eslintrc.yml ├── .npmignore ├── README.md ├── bower.json ├── example ├── assets │ ├── background.png │ ├── droid.png │ ├── dude.png │ ├── firstaid.png │ ├── heart.png │ └── rock.png ├── dat.gui.js ├── index.coffee ├── index.js └── phaser-arcade-physics.js ├── index.coffee ├── index.html ├── index.js ├── package.json ├── screenshot.png └── tests ├── .eslintrc.yml ├── index.html ├── tests.coffee └── tests.js /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/bower.json -------------------------------------------------------------------------------- /example/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/example/assets/background.png -------------------------------------------------------------------------------- /example/assets/droid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/example/assets/droid.png -------------------------------------------------------------------------------- /example/assets/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/example/assets/dude.png -------------------------------------------------------------------------------- /example/assets/firstaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/example/assets/firstaid.png -------------------------------------------------------------------------------- /example/assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/example/assets/heart.png -------------------------------------------------------------------------------- /example/assets/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/example/assets/rock.png -------------------------------------------------------------------------------- /example/dat.gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/example/dat.gui.js -------------------------------------------------------------------------------- /example/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/example/index.coffee -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/example/index.js -------------------------------------------------------------------------------- /example/phaser-arcade-physics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/example/phaser-arcade-physics.js -------------------------------------------------------------------------------- /index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/index.coffee -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/screenshot.png -------------------------------------------------------------------------------- /tests/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/tests/.eslintrc.yml -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/tests/tests.coffee -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-sprite-gui/HEAD/tests/tests.js --------------------------------------------------------------------------------