Navigation

VRC0005: Udon does not currently support type checking with the `is` keyword

Property Value
ID VRC0005
Category Usage
Severity Error
Runtime Version 3.1.0 ~ latest

Udon does not currently support type checking with the `is` keyword

Example

Code with Diagnostic

using UdonSharp;

class TestBehaviour0 : UdonSharpBehaviour
{
    public void TestMethod()
    {
        var a = "";
        var b = a is string;
                ~~~~~~~~~~~
    }
}

Code with Fix

// NOT YET PROVIDED