ParameterContainerの検索が機能せずエラーが発生する

Here is a forum for reporting failure to Arbor developer.
Please read the forum rules carefully and enter the information necessary to confirm the problem.

Note:
  • Please read the "Update Guide" carefully when updating Arbor.
  • The bugs that we already know are summarized in "Known Issues", so please check once.
  • Please check ReleaseNote and use the latest version if possible before reporting a bug.
  • Unity beta and alpha versions are not supported. Please use the official release version.
  • In principle, defects caused by the introduction of other assets are not supported. If you find a defect, please report it after isolating which asset is the problem.

ここは、Arbor開発者へ不具合を報告するためのフォーラムです。
フォーラムルールをよく読み、不具合確認に必要な情報を記載するようお願いします。

注意点:
  • Arborを更新する際は「アップデートガイド」をよく読み行ってください。
  • 既に把握している不具合は「既知の問題」にまとめてありますので一度確認してみてください。
  • 不具合報告をする前にReleaseNoteを確認し、なるべく最新バージョンを使用して下さい。
  • Unityのベータ版およびアルファ版はサポート対象外です。正式リリース版をご利用ください。
  • 他アセット導入による不具合は原則サポート対象外です。不具合を見つけた場合はどのアセットの問題であるか切り分けた上でのご報告をお願いいたします。

Forum rules
The items necessary for reporting are as follows.
  • OS(Required)
  • Unity version(Required)
  • Arbor version(Required)
  • How to reproduce(Required)
    The reproduction method should be described accurately so that anyone can read the same procedure.
    If you do not know the exact reproduction procedure, as long as you can remember it, so please tell us what you were doing immediately before and the last time you edited it.
  • Build platform
  • Reproduction project (Minimum configuration not including Arbor and other assets) or video

Note:
  • Please read the "Update Guide" carefully when updating Arbor.
  • The bugs that we already know are summarized in "Known Issues", so please check once.
  • Please check ReleaseNote and use the latest version if possible before reporting a bug.
  • Unity beta and alpha versions are not supported. Please use the official release version.
  • In principle, defects caused by the introduction of other assets are not supported. If you find a defect, please report it after isolating which asset is the problem.

報告に必要な項目は以下の通りです。
  • OS(必須)
  • Unityバージョン(必須)
  • Arborバージョン(必須)
  • 再現方法(必須)
    再現方法については、誰が読んでも同様の手順を行えるよう正確に記述するようにお願いいたします。
    もし正確な再現手順が不明な場合、覚えている限りで構いませんので直前に行っていたことや最後に編集した時のことを教えてください。
  • ビルドプラットフォーム
  • 再現プロジェクト(Arborや他アセットなどを含まない最小構成)もしくは動画

注意点:
  • Arborを更新する際は「アップデートガイド」をよく読み行ってください。
  • 既に把握している不具合は「既知の問題」にまとめてありますので一度確認してみてください。
  • 不具合報告をする前にReleaseNoteを確認し、なるべく最新バージョンを使用して下さい。
  • Unityのベータ版およびアルファ版はサポート対象外です。正式リリース版をご利用ください。
  • 他アセット導入による不具合は原則サポート対象外です。不具合を見つけた場合はどのアセットの問題であるか切り分けた上でのご報告をお願いいたします。
ryo

ParameterContainerの検索が機能せずエラーが発生する

Post by ryo »

OS:windows8.1
Unityバージョン:2021.1.18f1
Arborバージョン:3.8.4
再現方法:
1.HierarchyよりParameterContainerを作成
2.InspectorよりIntを2個作成(名前はNew Int, New Int 0となる)
3.検索窓に触らなければ作成したパラメータは表示されていますが
「New」などを入力しても検索に何も出てこず、
エディタのコンソールにはエラーがでるようです。

NullReferenceException: Object reference not set to an instance of an object
UnityEditorInternal.ReorderableList.set_serializedProperty (UnityEditor.SerializedProperty value) (at <787760f2093d4a7bb881e33fb1e69d90>:0)
ArborEditor.ParameterContainerInternalInspector.OnInspectorGUI () (at Assets/Plugins/Arbor/Internal/Editor/Parameter/ParameterContainerInternalInspector.cs:1097)
UnityEditor.UIElements.InspectorElement+<>c__DisplayClass59_0.<CreateIMGUIInspectorFromEditor>b__0 () (at <60f4a7b331a5480aaa94dbc2506830d5>:0)
UnityEngine.GUIUtility:ProcessEvent(Int32, IntPtr, Boolean&)

以上ご報告します。
User avatar
caitsithware
管理人
Posts: 493
Joined: 2015/08/17 12:41

Re: ParameterContainerの検索が機能せずエラーが発生する

Post by caitsithware »

ご報告ありがとうございます。

確認したところ再現できました。
原因としてはUnity2020.2以降のUnity側の一種のバグの可能性が高いです。

メモ
  • 検索時と通常時でReorderableListインスタンスを使いまわしている。
    検索時はReorderableList.serializedPropertyをnullにして、ReorderableList.listに検索結果の配列を設定。
  • Unity2020.2以降のReorderableList.serializedPropertyのsetで、valueのnullチェックせずにメンバーにアクセスするように変更されている
    https://github.com/Unity-Technologies/U ... st.cs#L383
  • 仮にReorderableList.listだけ設定してもserializedPropertyはnullにされないので、各プロパティのsetが意味をなさずReorderableListインスタンスを作り直すしかないのでUnityのバグの可能性が高い。
Arbor側としても回避策が取れないか検証して対応いたします。
User avatar
caitsithware
管理人
Posts: 493
Joined: 2015/08/17 12:41

Re: ParameterContainerの検索が機能せずエラーが発生する

Post by caitsithware »

既知の問題へ暫定対処方法を記載いたしました。
ryo

Re: ParameterContainerの検索が機能せずエラーが発生する

Post by ryo »

ご確認・ご対応ありがとうございました。
大変使いやすくて気に入っています。
今後ともよろしくお願いいたします。
User avatar
caitsithware
管理人
Posts: 493
Joined: 2015/08/17 12:41

Re: ParameterContainerの検索が機能せずエラーが発生する

Post by caitsithware »

Arbor 3.8.5にて修正いたしました。
アセットストアから再DLし、リリースノートやreadme記載の更新手順に従って再インポートしてください。
Arbor 3.8.5 リリース | Arbor 3
Locked