コンテンツにスキップ

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()
    {
    }
}

最終更新日: 2021年5月9日 14:20:17