URA0009: Base type calling is not yet supported by UdonSharp¶
ID: URA0009 /
Category: UdonSharp /
Severity: Error
UdonSharp では現時点で base 経由でのベースタイプメソッドコールはサポートされていません。
Example¶
using UdonSharp;
class ExampleClass : UdonSharpBehaviour
{
private void Update()
{
base.GetComponent<Transform>(); // URA0009
}
}
Solution¶
using UdonSharp;
class ExampleClass : UdonSharpBehaviour
{
private void Update()
{
GetComponent<Transform>();
}
}
最終更新日: 2021年5月9日 14:20:17