Overview
Splits a spritesheet back into a list of frame images — the exact inverse of sprite_sheet_pack. Numbered-PNG export and per-frame processing become one node.
Usage tips
- The go-to flow:
animation_render→ sprite_sheet_to_frames →batch_export(images input) — every frame becomes a numbered PNG. - Need only some frames? Append
list_get(one frame) orlist_slice(a range). - For round-tripping, process frames with
list_mapand rebuild the sheet withsprite_sheet_pack.
Common mistakes
- Wanting the sheet as one PNG — that is
sprite_sheet_to_image's job; this node splits into individual frames.
Related nodes
sprite_sheet_pack— the inverse (list of frames → sheet)sprite_sheet_to_image— the whole sheet as one imagesprite_sheet_frame_get— shortest route when you need a single indexed framelist_get/list_slice/list_map— pick and process the split frames