Array Get
Returns nth member in an array.
Node Data | |
---|---|
ValuesPb Array | |
Display name | |
Array Get | |
Internal name | |
Node_Array_Get | |
Inheritances | |
node | |
node_array_get | |
Inputs | |
node_array_get | |
any |
Array |
int |
Index |
enum |
Overflow |
Outputs | |
node_array_get | |
any |
Value |
Get the value of an array at a specific index.
Properties
Array
The array to get the value from.
Index
The index of the value to get.
- If the index is negative, it will count from the end of the array.
- In the is an array, the output will be an array with the values at the specified indexes.
Overflow
What to do if the index is out of bounds.
Clamp
: Clamp the index to the bounds of the array (or inverted bound for negative index).Loop
: Wrap the index around the bounds of the array.Ping Pong
: Reflect the index at the bounds of the array.