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

VSC0009: Constructors are not currently supported

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

Constructors are not currently supported

Example

Code with Diagnostic

using UdonSharp;

class TestBehaviour0 : UdonSharpBehaviour
{
    public TestBehaviour0() { }
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~

    public TestBehaviour0(string arg) { }
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
}

Code with Fix

// NOT YET PROVIDED