Build List
Build a list from a dynamic number of items. Connect items to auto-grow the input list.
Builds a list from a variable number of inputs; connecting an item auto-adds another empty slot.
Dynamic ports
A resolver grows the item inputs one slot at a time: connecting item_0 exposes item_1, then item_2, and so on, always leaving one empty slot. The output list's element type is inferred from the first connected item.
Inputs
- Item 1requiredrepeats — T. Provides the first item in the list and starts the auto-growing input chain. When item_0 is connected, the node exposes item_1, then item_2, and so on, always leaving one empty slot for the next value.
Outputs
- Value — List<T>. Represents the list assembled from the connected item inputs.
Example use cases
Collect tickets
Wire several ticket sources into Build List to produce one list you can iterate downstream.