sprite_sheet
Create a zoomed sprite contact sheet with one row per file and one column per frame. Crop suspicious areas to zoom in and inspect frame consistency.
Instructions
Compose a zoomed contact sheet (PNG on a checkerboard) from sprites — one row per file, one column per frame — and return it as an image so you can LOOK at what you just made. Judge consistency on sheets, not in-game: every visual defect we ever caught was caught on a sheet. Use crop to zoom into the area under suspicion (e.g. just the head).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| crop | No | crop every cell to this rect before zooming | |
| zoom | No | pixel zoom (default 4) | |
| cellH | No | spritesheet cell height (PNG sheets only) | |
| cellW | No | spritesheet cell width (PNG sheets only) | |
| files | Yes | files or directories; each file becomes a row | |
| outFile | Yes | where to write the sheet PNG | |
| maxFrames | No | max frames per row (default 8) | |
| returnImage | No | also return the sheet inline as an image (default true; sheets over ~800KB are returned as path only) |