Table of content
The random goal picker match each Seed with one or multiple Goals.
Properties
| Property | Description |
|---|---|
| Settings | |
| Goal Count | How many random goals each seed should connect to. See Index Safety |
| Num Goals | When specifying multiple goals, this is the maximum number of goals to connect each seeds to. |
| Index Safety | Failsafe method if the picked Goal index is out of bounds.See Index Safety |
Goal Count
There are three different methods available:
- Single
- Random
- Fixed
Single
Single will, well, connect to a single random goal.
Multiple Fixed
Random will connect to a fixed number of random goals, specified in Num Goals.
Multiple Random
Random will connect to a random number of random goals.
The number of connection will be between 0 and Num Goals
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. |