MAXScript FAQ > MAXScript Values > How do I create a multi-dimensional array? |
A MAXScript Array is a one-dimensional list of elements. An element of an array is addressed by its index in brackets,
Since an array can be an element inside of another array, you can create multi-dimensional arrays as you desire by placing multiple arrays inside an array. Using an index in brackets, you can reference the sub-array, using another pair of brackets and an index you can access an element inside the sub-array,