1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

インスペクタ上でList配列をデフォルトオープン状態にする

Last updated at Posted at 2021-04-01

メンバー変数にListがあるクラスScriptをアタッチしてInspectorで操作しようとすると、毎回1から手入力しないといけないの何とかならないんすかね?と社内で言われたので探ってみました。エディタ拡張によりListのデフォルトサイズを指定できました。また、要素を展開された状態にする事もできたので需要あるかわかりませんが投稿します。

こちらのGithubページからどうぞ

#使い方
1.CustomListEditor.csをAssets/Editor以下に配置
2.CustomList.csを任意のオブジェクトにアタッチ
3.デフォルトサイズが1, 展開状態のListがHierarchyで確認できます
CustomList.gif

上記はintのListですが、もちろん色んな型やクラスにもできます。
CustomList.csのint num値を変更すればListのデフォルトサイズがその値に変わります。
CustomListEditor.csでisExpandedプロパティをfalseに変更すればデフォルトで要素が閉じた状態になります。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?