Navigation
This page has not been translated yet. Showing the default language version.

VSC0010: Generic method declarations on UdonSharpBehaviours are not currently supported, consider using a non-UdonSharpBehaviour class

Property Value
ID VSC0010
Category Compiler
Severity Error
Runtime Version 3.1.0 ~ latest
Compiler Version 1.0.0 ~ latest

Generic method declarations on UdonSharpBehaviours are not currently supported, consider using a non-UdonSharpBehaviour class

Example

Code with Diagnostic

using UdonSharp;

class TestBehaviour0 : UdonSharpBehaviour
{
    public void TestMethod<T>() {}
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
}

Code with Fix

// NOT YET PROVIDED