URA0005: UdonSharp does not yet support inheriting from interfaces¶
ID: URA0005 /
Category: UdonSharp /
Severity: Error
UdonSharp では現時点で interface の実装をサポートしていません。
Example¶
using System;
using UdonSharp;
class ExampleClass : UdonSharpBehaviour, IDisposable // URA0005
{
private void Update()
{
}
}
Solution¶
using UdonSharp;
class ExampleClass : UdonSharpBehaviour
{
private void Update()
{
}
}
Last update: May 9, 2021 14:20:17