I think it's more readable as JSON than it is now. But practically, an AsJSON value in the debugger might help, so we can paste it in the Array Editor for visual purposes.
And perhaps, in the future, a way to automate this.
Develop games in your browser. Powerful, performant & highly capable.
I'll just leave this here:
dropbox.com/s/sx2smtpgqeg7zx2/axewhys.c3p
I'm British and this has always bothered me too, so much that i had taken to reversing the xy in the events so the format appeared correctly in the debugger.
So, you moved your steering wheel to the other side and still drive on the wrong side of the road. *boggles* I think I'd be confused either way.
I'm assuming that behind the scenes the array is a JavaScript array? In which case it a multidimensional array is basically an array of arrays of arrays.
(Don't understand why C3 has this odd array object with just three dimensions though)
Maybe console.table could help:
console.table
var foo = [[1,2],[3,4],[5,6]]; console.log(foo); console.log(JSON.stringify(foo)); console.table(foo); var bar = [[[1,2],[3,4]],[[5,6],[7,8]],[[9,10],[11,12]]]; console.log(bar); console.log(JSON.stringify(bar)); console.table(bar);
repl.it/@BanksySan/Console-magic