Version: 2017.1
导航系统的内部工作原理
导航网格构建组件

构建导航网格

从关卡几何体创建导航网格的过程称为导航网格烘焙 (NavMesh Baking)。该过程收集所有标记为 Navigation Static 的游戏对象的渲染网格和地形,然后处理它们以创建近似于关卡的可行走表面的导航网格。

在 Unity 中,导航网格生成方式是在 Navigation 窗口(菜单:__Window > Navigation__)中进行处理的。

为场景构建导航网格可以通过 4 个快速步骤完成:

1.选择应影响导航的场景几何体:可行走表面和障碍物。 2.选中 Navigation Static 复选框以便在导航网格烘焙过程中包括所选对象。 3.调整烘焙设置以匹配代理大小。 - Agent Radius 定义代理中心与墙壁或窗台的接近程度。 - Agent Height 定义代理可以达到的空间有多低。 - Max Slope 定义代理走上坡道的陡峭程度。 - Step Height 定义代理可以踏上的障碍物的高度。 4.单击 Bake 以构建导航网格。

每当 Navigation 窗口打开且可见时,生成的导航网格便会在场景中显示为底层关卡几何体上的蓝色覆盖层。

As you may have noticed in the above pictures, the the walkable area in the generated NavMesh appears shrunk. The NavMesh represents the area where the center of the agent can move. Conceptually, it doesn’t matter whether you regard the agent as a point on a shrunken NavMesh or a circle on a full-size NavMesh since the two are equivalent. However, the point interpretation allows for better runtime efficiency and also allows the designer to see immediately whether an agent can squeeze through gaps without worrying about its radius.

另外要记住的是导航网格是可行走表面的近似形状。例如,在楼梯中就能看出这一点:楼梯表示为平坦表面,但原始表面是有台阶的。这种表示方式是为了使导航网格数据大小保持较小。这种近似表示方式的副作用是,有时您会希望在关卡几何体中留出一些额外的空间,让代理能够通过一个狭窄位置。

烘焙完成后,您将在一个与导航网格所属场景同名的文件夹中找到导航网格资源文件。例如,如果在 Assets 文件夹中有一个名为 First Level 的场景,则导航网格将位于 Assets > First Level > NavMesh.asset

标记烘焙对象的附加工作流程

除了如上所述在 Navigation 窗口中将对象标记为 Navigation Static 之外,还可以使用 Inspector 顶部的 Static 菜单。如果刚好没有打开 Navigation 窗口,这会很方便。

阅读更多信息

导航系统的内部工作原理
导航网格构建组件