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

VRC0008: Field is not exposed to Udon

PropertyValue
IDVRC0008
CategoryUsage
SeverityError
Runtime Version3.1.0 ~ latest

Field is not exposed to Udon.

Example

Code with Diagnostic

using UdonSharp;
 
using UnityEngine;
 
class TestBehaviour0 : UdonSharpBehaviour
{
    [SerializedField]
    private ParticleSystemForceField _field;
 
    private void TestMethod()
    {
        var @delegate = _field.gameObject;
                        ~~~~~~~~~~~~~~~~~
    }
}

Code with Fix

// NOT YET PROVIDED
VRC0008: Field is not exposed to Udon / Udon Analyzer / Natsuneko Laboratory Docs