NavMeshAreaの設定を一括で変えるEditor拡張
NavMeshを使用している際に、オブジェクトのNavMeshAreaの設定を一括で変えたかったので作ってみました。
あくまで、今回は子階層全てのオブジェクトを対象に記述しています。
Hierarchyでオブジェクトを右クリックして、Menuを追加してNavMeshAreaの設定を変えることができます。
NavMeshAreaの設定を変えるとBakeもするように記述しました。

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();
}
}