This topic is not available in your language. Therefore, the original version (ja-jp) is displayed.

VSC0013: Does not support multidimensional array access

PropertyValue
IDVSC0013
CategoryCompiler
SeverityError
Runtime Version3.1.0 ~ latest
Compiler Version1.0.0 ~ latest

Does not support multidimensional array access

Example

Code with Diagnostic

using UdonSharp;
 
class TestBehaviour0 : UdonSharpBehaviour
{
    public void TestMethod()
    {
        var arr = new int[1, 2];
        arr[0, 0] = 1;
        ~~~~~~~~~
    }
}

Code with Fix

// NOT YET PROVIDED
VSC0013: Does not support multidimensional array access / Udon Analyzer / Natsuneko Laboratory Docs