Hi,
I have a multidimensional array that i need to reverse from top to bottom, I am fairly new to unity and programming itself, it would be amazing if you could give me an extensive description on how to do it and what you are doing so i can learn from it.
Thanks in advance.
You may need to iterate through your array with a for loop saving everything to a fresh array. Other wise it could be less intensive to call it in reverse.
Or use
System.Array.Reverse(members);
As taken from this Q/A