既知の問題(3.8.1)


過去バージョンの不具合についてのアーカイブです。

もし、再発していましたら不具合フォーラムにご報告お願いいたします。

Arbor3.8.1

ParameterContainerのComponentパラメータなどで型を指定しようとするとエラーが発生して設定できない

Version Controlパッケージ内の型が読み込めず例外が発生しているようです。

ステータス: Arbor 3.8.2で修正予定

暫定対処方法

  • Assets/Plugins/Arbor/Internal/Scripts/AttributeHelper.csを開く。
  • 205行目あたりを以下のように変更。(GetAttributesメソッドの中)
    try
    {
    	attributes = member.GetCustomAttributes(typeof(Attribute), false) as Attribute[];
    }
    catch
    {
    	attributes = new Attribute[0];
    }
    

Version Controlパッケージの型が読み込めないことが直接の原因なので、Version Control機能を使用していないのであればPackage ManagerからVersion Controlパッケージを削除しても解決します。