├── .gitignore ├── .npmignore ├── README.md ├── app ├── assets │ ├── example │ │ └── assets │ │ │ ├── NOLICENSE │ │ │ ├── asteroid1.png │ │ │ ├── asteroid2.png │ │ │ ├── asteroid3.png │ │ │ ├── bullets.png │ │ │ ├── deep-space.jpg │ │ │ ├── muzzle-flash.png │ │ │ └── ship.png │ ├── index.html │ └── screenshot.png ├── example.coffee └── plugin.coffee ├── bower.json ├── brunch-config.coffee ├── dist ├── DebugArcadePhysics.js ├── example │ ├── assets │ │ ├── NOLICENSE │ │ ├── asteroid1.png │ │ ├── asteroid2.png │ │ ├── asteroid3.png │ │ ├── bullets.png │ │ ├── deep-space.jpg │ │ ├── muzzle-flash.png │ │ └── ship.png │ ├── index.js │ └── vendor.js ├── index.html └── screenshot.png ├── package.json └── vendor ├── dat.gui.js └── phaser-arcade-physics.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/README.md -------------------------------------------------------------------------------- /app/assets/example/assets/NOLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/app/assets/example/assets/NOLICENSE -------------------------------------------------------------------------------- /app/assets/example/assets/asteroid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/app/assets/example/assets/asteroid1.png -------------------------------------------------------------------------------- /app/assets/example/assets/asteroid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/app/assets/example/assets/asteroid2.png -------------------------------------------------------------------------------- /app/assets/example/assets/asteroid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/app/assets/example/assets/asteroid3.png -------------------------------------------------------------------------------- /app/assets/example/assets/bullets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/app/assets/example/assets/bullets.png -------------------------------------------------------------------------------- /app/assets/example/assets/deep-space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/app/assets/example/assets/deep-space.jpg -------------------------------------------------------------------------------- /app/assets/example/assets/muzzle-flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/app/assets/example/assets/muzzle-flash.png -------------------------------------------------------------------------------- /app/assets/example/assets/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/app/assets/example/assets/ship.png -------------------------------------------------------------------------------- /app/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/app/assets/index.html -------------------------------------------------------------------------------- /app/assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/app/assets/screenshot.png -------------------------------------------------------------------------------- /app/example.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/app/example.coffee -------------------------------------------------------------------------------- /app/plugin.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/app/plugin.coffee -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/bower.json -------------------------------------------------------------------------------- /brunch-config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/brunch-config.coffee -------------------------------------------------------------------------------- /dist/DebugArcadePhysics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/dist/DebugArcadePhysics.js -------------------------------------------------------------------------------- /dist/example/assets/NOLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/dist/example/assets/NOLICENSE -------------------------------------------------------------------------------- /dist/example/assets/asteroid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/dist/example/assets/asteroid1.png -------------------------------------------------------------------------------- /dist/example/assets/asteroid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/dist/example/assets/asteroid2.png -------------------------------------------------------------------------------- /dist/example/assets/asteroid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/dist/example/assets/asteroid3.png -------------------------------------------------------------------------------- /dist/example/assets/bullets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/dist/example/assets/bullets.png -------------------------------------------------------------------------------- /dist/example/assets/deep-space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/dist/example/assets/deep-space.jpg -------------------------------------------------------------------------------- /dist/example/assets/muzzle-flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/dist/example/assets/muzzle-flash.png -------------------------------------------------------------------------------- /dist/example/assets/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/dist/example/assets/ship.png -------------------------------------------------------------------------------- /dist/example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/dist/example/index.js -------------------------------------------------------------------------------- /dist/example/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/dist/example/vendor.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/dist/screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/package.json -------------------------------------------------------------------------------- /vendor/dat.gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/vendor/dat.gui.js -------------------------------------------------------------------------------- /vendor/phaser-arcade-physics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-debug-arcade-physics/HEAD/vendor/phaser-arcade-physics.js --------------------------------------------------------------------------------