This topic is not available in your language. Therefore, the original version (ja-jp) is displayed.
VRC0008: Field is not exposed to Udon
Property | Value |
---|---|
ID | VRC0008 |
Category | Usage |
Severity | Error |
Runtime Version | 3.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