For some reason, unity wont let me create an 8 dimensional array like this:
var verlist : int[,,,,,,,] = new int[2,2,2,2,2,2,2,2];
but has no problem with a 4 dimensional array like this:
var verlist : int[,,,] = new int[2,2,2,2];
Its the exact same code, but unity sends the error message:
No appropriate version of 'boo.Lang.Builtins.matrix' for the argument list '(int, int, int, int, int, int, int, int)' was found
Does anyone have any idea why and how to fix this?
↧