Yeah, it works perfectly! 🙂 Thanks a lot!
I am going to do the basic setup for each matrix. I found some of your previous code for creating a grid, and it works. But my question is, is it possible to easily/quickly duplicate n-number elements without using ctrl+d
origin = [0,0]; // center of upper-left element
hDist = 32;
vDist = 32;
numCols = 16;
myCol = (index-1)%numCols;
myRow = Math.floor((index-1)/numCols);
origin + [myCol*hDist,myRow*vDist]