├── .gitignore ├── LICENSE ├── README.md ├── assets ├── demo.png └── hero.png ├── examples ├── 6_by_9.png └── example.json ├── extension ├── font-custom.lua ├── json.lua ├── package.json └── plugin.lua └── font-custom.aseprite-extension /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletchmakes/font-custom/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletchmakes/font-custom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletchmakes/font-custom/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletchmakes/font-custom/HEAD/assets/demo.png -------------------------------------------------------------------------------- /assets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletchmakes/font-custom/HEAD/assets/hero.png -------------------------------------------------------------------------------- /examples/6_by_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletchmakes/font-custom/HEAD/examples/6_by_9.png -------------------------------------------------------------------------------- /examples/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletchmakes/font-custom/HEAD/examples/example.json -------------------------------------------------------------------------------- /extension/font-custom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletchmakes/font-custom/HEAD/extension/font-custom.lua -------------------------------------------------------------------------------- /extension/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletchmakes/font-custom/HEAD/extension/json.lua -------------------------------------------------------------------------------- /extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletchmakes/font-custom/HEAD/extension/package.json -------------------------------------------------------------------------------- /extension/plugin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletchmakes/font-custom/HEAD/extension/plugin.lua -------------------------------------------------------------------------------- /font-custom.aseprite-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletchmakes/font-custom/HEAD/font-custom.aseprite-extension --------------------------------------------------------------------------------