├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── demo.css ├── demo.js ├── dist ├── .gitkeep └── index.js ├── index.html ├── package.json ├── screenshot.jpg ├── src ├── index.js ├── key │ ├── dataKey.js │ └── maskKey.js ├── module │ ├── Mask.js │ ├── Mask.test.js │ ├── Sprite.js │ ├── Sprite.test.js │ ├── Square.js │ └── Square.test.js └── static │ ├── random.js │ ├── random.test.js │ ├── util.js │ └── util.test.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/bower.json -------------------------------------------------------------------------------- /demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/demo.css -------------------------------------------------------------------------------- /demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/demo.js -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/dist/index.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/src/index.js -------------------------------------------------------------------------------- /src/key/dataKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/src/key/dataKey.js -------------------------------------------------------------------------------- /src/key/maskKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/src/key/maskKey.js -------------------------------------------------------------------------------- /src/module/Mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/src/module/Mask.js -------------------------------------------------------------------------------- /src/module/Mask.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/src/module/Mask.test.js -------------------------------------------------------------------------------- /src/module/Sprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/src/module/Sprite.js -------------------------------------------------------------------------------- /src/module/Sprite.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/src/module/Sprite.test.js -------------------------------------------------------------------------------- /src/module/Square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/src/module/Square.js -------------------------------------------------------------------------------- /src/module/Square.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/src/module/Square.test.js -------------------------------------------------------------------------------- /src/static/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/src/static/random.js -------------------------------------------------------------------------------- /src/static/random.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/src/static/random.test.js -------------------------------------------------------------------------------- /src/static/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/src/static/util.js -------------------------------------------------------------------------------- /src/static/util.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/src/static/util.test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/pixel-mask-generator/HEAD/webpack.config.js --------------------------------------------------------------------------------