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

VSC0012: Does not yet support hiding base methods

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

Does not yet support hiding base methods.

Example

Code with Diagnostic

using UdonSharp;
 
class TestBehaviour0 : UdonSharpBehaviour
{
    public void TestMethod(string args) {}
}
 
class TestBehaviour1 : TestBehaviour0
{
    public void TestMethod(string args) {}
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
}

Code with Fix

// NOT YET PROVIDED
VSC0012: Does not yet support hiding base methods / Udon Analyzer / Natsuneko Laboratory Docs