1
1

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.

Hierarchy上で選択したオブジェクトの子どもを一括でNavMeshArea設定を変える方法

Posted at

NavMeshAreaの設定を一括で変えるEditor拡張

NavMeshを使用している際に、オブジェクトのNavMeshAreaの設定を一括で変えたかったので作ってみました。

あくまで、今回は子階層全てのオブジェクトを対象に記述しています。

Hierarchyでオブジェクトを右クリックして、Menuを追加してNavMeshAreaの設定を変えることができます。

NavMeshAreaの設定を変えるとBakeもするように記述しました。

スクリーンショット 2016-12-09 1.53.07.png
NavSetting.cs
using UnityEngine;
using UnityEditor;

public class NavSetting {

    [MenuItem("GameObject/Child to Walkable", false, 20)]
    public static void ChildToWalkable()
    {
        SettingNav("Walkable");
    }

	[MenuItem("GameObject/Child to Not Walkable", false, 21)]
    public static void ChildToNotWalkable()
    {
        SettingNav("Not Walkable");
    }

	[MenuItem("GameObject/Child to Jump", false, 22)]
    public static void ChildToJump()
    {
        SettingNav("Jump");
    }

	public static void SettingNav(string areaName) {
		var selectObject = Selection.activeGameObject;
		var areaNum = NavMesh.GetAreaFromName(areaName);
		for(int i = 0; i<selectObject.transform.childCount; i++) {
			var child = selectObject.transform.GetChild(i);
			GameObjectUtility.SetStaticEditorFlags(child.gameObject, StaticEditorFlags.NavigationStatic);
			GameObjectUtility.SetNavMeshArea(child.gameObject, areaNum);
		}
		NavMeshBuilder.BuildNavMesh();
	}
}

1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?