Overview of spritesmith functionality
masterspritesmith converts a collection of images into a single spritesheet and a coordinate map.
- Spritesheet: A single image containing all input images.
- Coordinate Map: A JSON object mapping each input filename to its position and dimensions within the spritesheet:
{
"/path/to/image.png": {
"x": 0,
"y": 0,
"width": 32,
"height": 32
}
}