Table of content
Properties
Property | Description |
---|---|
Settings | |
Goal Count | Either a Single Goal or Multiple Goals
|
Attribute | If Single Goal is specified, lets you specify a property or attribute which value will be used as an index within the input goals. |
Attributes | If Multiple Goal is specified, lets you specify a list of property or attribute which values will be used as an index within the input goals. |
Index Safety | Failsafe method if the picked Goal index is out of bounds.See Index Safety |
When using
Multiple Goal
, each seed will attempt to create one connection per entry in the array.
The attribute is fetched on theSeed
input.
Index Safety
The index safety property controls how invalid/out of bounds input values are handled.
Safety method | Β |
Ignore | Invalid indices will be ignored and wonβt be processed further. |
Tile | Index is tiled (wrapped around) the contextβ valid min/max range. |
Clamp | Index is clamped between the contextβ valid min/max range. |
Yoyo | Index bounces back and forth between the contextβ valid min/max range. |