Range

This Node provides the functions of a program loop and thus corresponds to a "for in range()" structure in Python, for example. You can define two integer values whose value range will then be output number by number. Please note that the value defined at the end is no longer one of the output values.

Loops, such as the range Node, are always helpful if a result should be calculated in several steps. In this example, for example, the output values will simply be multiplied and used as components of an item. In this way, the cube can be multiplied into a staircase with individual steps.