Pixel-Composer/scripts/array_functions/array_functions.gml

4 lines
101 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
function array_safe_get(arr, index) {
if(index >= array_length(arr)) return 0;
return arr[index];
}