This topic is not available in your language. Therefore, the original version (ja-jp) is displayed.
VSC0001: UdonSharpBehaviour classes must be same name as C# files
| Property | Value |
|---|---|
| ID | VSC0001 |
| Category | Compiler |
| Severity | Error |
| Runtime Version | 3.1.0 ~ latest |
| Compiler Version | 1.0.0 ~ latest |
UdonSharpBehaviour classes must be same name as C# files
Example
Code with Diagnostic
using UdonSharp;
class TestSource2 : UdonSharpBehaviour {}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Code with Fix
using UdonSharp;
class TestSource0 : UdonSharpBehaviour {}