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

VRC0017: The method specified for over the network cannot start with an underscore

PropertyValue
IDVRC0017
CategoryUnexpected
SeverityWarning
Runtime Version3.1.0 ~ latest

The method specified for over the network cannot start with an underscore

Example

Code with Diagnostic

using UdonSharp;
 
using VRC.Udon.Common.Interfaces;
 
class TestBehaviour0 : UdonSharpBehaviour
{
    private void TestMethod()
    {
        SendCustomNetworkEvent(NetworkEventTarget.All, "_TestMethod");
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    }
 
    private void _TestMethod() {}
}

Code with Fix

// NOT YET PROVIDED
VRC0017: The method specified for over the network cannot start with an underscore / Udon Analyzer / Natsuneko Laboratory Docs