Overview
Groups multiple IsoItems such as blocks into one compound item. Build a reusable unit
here—such as a streetlight from a post and roof, or a house from four boxes—before
placing it in the world. It serves the same role as model_group in the Model lane.
Usage tips
- This is the middle layer in parts → item → world. Anything that moves as a unit or is
placed multiple times should become an item before going to
iso_place. - Child-item local coordinates stay within the item; placement coordinates belong to Place. Keeping those responsibilities separate makes the graph easier to organize.
- One node accepts up to four items. For five or more, chain
iso_assemblenodes and combine the resulting compound items again.
Notes
- Combines the input
IsoItemvalues into one compound item. - It does not place the item into an
IsoWorld; downstreamIso Placeis expected to assign world coordinates. - The compound item's overall bounds are calculated from the local bounds of its children.
- There is no List input or dynamic slot count yet; coordinates for unconnected slots do not affect evaluation.
Related nodes
iso_block/iso_item_builder— parts to combineiso_place— place the item in the worldiso_world_compose— combine multiple worldsmodel_group— the equivalent node in the Model lane