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

VRC0018: The method specified for SendCustomEvent is not declared in the behaviour

Property Value
ID VRC0018
Category Unexpected
Severity Warning
Runtime Version 3.1.0 ~ latest

The method specified for SendCustomEvent is not declared in the behaviour

Example

Code with Diagnostic

using UdonSharp;

class TestBehaviour0 : UdonSharpBehaviour
{
    private TestBehaviour1 _behaviour;

    public void TestMethod()
    {
        _behaviour.SendCustomEvent("SomeMethod");
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    }
}

class TestBehaviour1 : UdonSharpBehaviour {}

Code with Fix

// NOT YET PROVIDED