Hello,

how can I get the size of an array?

I have tried the following:

var my_array[7];
...
size = sizeof(my_array) / sizeof(my_array[0]);

However, sizeof(my_array[0]) leads to an engine crash.

Thanks