This topic is not available in your language. Therefore, the original version (ja-jp) is displayed.
VSC0002: Local method declarations are not currently supported
Property | Value |
---|---|
ID | VSC0002 |
Category | Compiler |
Severity | Error |
Runtime Version | 3.1.0 ~ latest |
Compiler Version | 1.0.0 ~ latest |
Local method declarations are not currently supported
Example
Code with Diagnostic
using UdonSharp;
class TestBehaviour0 : UdonSharpBehaviour
{
private void Start()
{
void SomeLocalFunction() {}
~~~~~~~~~~~~~~~~~~~~~~~~~~~
}
}
Code with Fix
// NOT YET PROVIDED