The Repeat concept is implemented as a pair of nodes: Repeat Begin and Repeat End.
N times.u and repeat_index update each iteration, allowing the subgraph to evolve (e.g., getting smaller, rotating, or changing probability).Explicit Recursion While Grow has a built-in repeat for convenience, the explicit Repeat block allows for more complex recursive structures. You can wrap multiple nodes (Grows, Splits, Switches) to repeat an entire logic chain.
The Loop
Repeat Count) and updates loop attributes.Repeat Begin
Repeat End
Repeat Count The number of times to execute the subgraph.
Fraction A multiplier for the count.
Fraction = 1.0: Full execution.Fraction < 1.0: Limits the realized steps (useful for animating growth).Delay Offsets the start of the repetition, useful for staggering growth across different branches.
| Attribute | Meaning |
|---|---|
u | Normalized loop index 0..1. Updates every iteration. |
repeat_index | Integer counter for the current iteration. |
u attribute inside the subgraph to drive parameters (e.g., map Width to u so the repeated segments taper).