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
| Property | Value | 
|---|---|
| ID | VRC0017 | 
| Category | Unexpected | 
| Severity | Warning | 
| Runtime Version | 3.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