Hi!
What I want to do is to check if my array's Y values at an X are all together =0. It would be like a summation of all the Y values at an X.
Is there any way to do this? Thank you for your help! 😀
Develop games in your browser. Powerful, performant & highly capable.
Create ColumnSumVariable
Repeat Array.Height times - Add Array.At(x,loopindex) to ColumnSumVariable
Alternative -
Repeat Array.Height times
-> System compare values Array.At(X,loopindex) > 0 - Do something
-> Else - Stop Loop