├── .bowerrc ├── .gitignore ├── README.md ├── bower.json ├── example ├── UIpack │ ├── blueSheet.png │ ├── blueSheet.xml │ └── license.txt ├── game.js ├── index.htm └── nine-patch-phaser-plugin │ ├── nine-patch-phaser-plugin.js │ └── nine-patch-phaser-plugin.min.js ├── gulpfile.js ├── package.json └── src ├── NinePatchCache.es6 ├── NinePatchImage.es6 └── index.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { "directory": "example/lib" } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | example/lib 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/bower.json -------------------------------------------------------------------------------- /example/UIpack/blueSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/example/UIpack/blueSheet.png -------------------------------------------------------------------------------- /example/UIpack/blueSheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/example/UIpack/blueSheet.xml -------------------------------------------------------------------------------- /example/UIpack/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/example/UIpack/license.txt -------------------------------------------------------------------------------- /example/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/example/game.js -------------------------------------------------------------------------------- /example/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/example/index.htm -------------------------------------------------------------------------------- /example/nine-patch-phaser-plugin/nine-patch-phaser-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/example/nine-patch-phaser-plugin/nine-patch-phaser-plugin.js -------------------------------------------------------------------------------- /example/nine-patch-phaser-plugin/nine-patch-phaser-plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/example/nine-patch-phaser-plugin/nine-patch-phaser-plugin.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/NinePatchCache.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/src/NinePatchCache.es6 -------------------------------------------------------------------------------- /src/NinePatchImage.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/src/NinePatchImage.es6 -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcell/nine-patch-phaser-plugin/HEAD/src/index.js --------------------------------------------------------------------------------