PacketIterator¶
Iterate over the chunks and their names in a Packet.
On each successive update this node will then output a two-element list holding the chunk name and the chunk object at a time, until the packet is exhausted. Version 0.9.0
Ports/Properties¶
data¶
Packet to iterate over.
curname¶
Current name.
curchunk¶
Current chunk.
nonempty¶
Only include chunks with non-empty data. This refers to whether the n-dimensional array in the chunk's block is empty, and does not relate to properties.
with_axes¶
Only include chunks that have all of these axes.
with_flags¶
Only include chunks that have all of these flags.
without_flags¶
Only include chunks that have none of these flags.
name_matches¶
Only include chunks whose name matches this wildcard pattern. May include '*' and '?'. If this starts with 're:', the remainder of the string is interpreted as a regular expression.
set_breakpoint¶
Set a breakpoint on this node. If this is enabled, your debugger (if one is attached) will trigger a breakpoint.
metadata¶
User-definable meta-data associated with the node. Usually reserved for technical purposes.
verbose¶
Whether to print the current item to the console.