Currently I'm using the following action to sum up one column of an array:
Array_Levels.At(1,1)+Array_Levels.At(2,1)+Array_Levels.At(3,1).....
Does anyone know a more intelligent way of doing it since I've 100 levels to attend...
Thanks~
Use a loop - for 1 to array.width, add arr_levels.at(loopindex,1) to a local variable.
Develop games in your browser. Powerful, performant & highly capable.
It works! Thanks so much!