Version: 2021.2
언어: 한국어
public static AI.NavMeshData BuildNavMeshData (AI.NavMeshBuildSettings buildSettings, List<NavMeshBuildSource> sources, Bounds localBounds, Vector3 position, Quaternion rotation);

파라미터

buildSettings Settings for the bake process, see NavMeshBuildSettings.
sources List of input geometry used for baking, they describe the surfaces to walk on or obstacles to avoid.
localBounds Bounding box relative to position and rotation which describes the volume where the NavMesh should be built. Empty bounds is treated as no bounds, i.e. the NavMesh will cover all the inputs.
position Center of the NavMeshData. This specifies the origin for the NavMesh tiles (See Also: NavMeshBuildSettings.tileSize).
rotation Orientation of the NavMeshData, you can use this to generate NavMesh with an arbitrary up-vector – e.g. for walkable vertical surfaces.

반환

NavMeshData Returns a newly built NavMeshData, or null if the NavMeshData was empty or an error occurred. The newly built NavMeshData, or null if the NavMeshData was empty or an error occurred.

설명

Builds a NavMesh data object from the provided input sources. (UnityEngine)

Note: that NavMeshBuilder.BuildNavMeshData has same effect as creating a new empty NavMeshData and calling NavMeshBuilder.UpdateNavMeshData.