Overview
Combines multiple inputs into one List. It is the entry point for bundling separately
created images or numbers and passing them to a node that accepts a list, such as
sprite_sheet_pack, list_map, or a batch-processing node.
Usage tips
- A representative use is building a spritesheet: bundle separately drawn or
processed frames into a
List<Image>and pass it tosprite_sheet_pack. - Increase the number of slots with
count, up to 16. For more items or a regular numeric sequence, use a generator such asvariant_rangeorseed_range. - Choose
item_typefirst. Changing it later may disconnect existing connections.
Related nodes
list_get— the reverse operation, from a list to one itemlist_map/list_zip— process the bundled listsprite_sheet_pack— a common destination forList<Image>cartesian_product— expand combinations
Technical details
item_typefixes the type of the list elements.- Selecting
Numberaccepts bothFloatandInt. - Selecting
Listcreates a nested list. - Selecting
Anyallows a mixed list, butListGetand downstream nodes may report type-mismatch warnings.
Examples
- Bundle several images into
List<Image>and switch between them withListGet. - Bundle several numeric candidates into
List<Number>and select them in an animation. - Use
List<List>to group several sets of pattern candidates together.