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 5 years have passed since last update.

Unityのインスペクターで子供も含めて描画する法

Last updated at Posted at 2016-03-01

いやはや、なんだかんだでインスペクターとSerializedFieldわかんないなーとかおもっていろいろ探してもどうやったら同じように描画できるかわからなかったのでさくりとやってみました。

こんな感じでどうでしょうか・・・?

		serializedObject.Update();
		SerializedProperty iterator = serializedObject.GetIterator();
		int currentDepth = 0;
		while (iterator.NextVisible(true))
		{
			if(currentDepth < iterator.depth)
			{
				continue;
			}

			EditorGUI.indentLevel = iterator.depth;
			EditorGUILayout.PropertyField(iterator, false);
			if(iterator.isExpanded)
			{
				currentDepth = iterator.depth + 1;
			}
			else
			{
				currentDepth = iterator.depth;
			}
		}
		serializedObject.ApplyModifiedProperties();

ポイントはdepthとisExpandのしょりです

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?