Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

NavMeshBuildSource

struct in UnityEngine.AI

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

The input to the NavMesh builder is a list of NavMesh build sources.

Their shape can be one of the following: mesh, terrain, box, sphere, or capsule. Each of them is described by a NavMeshBuildSource struct.

You can specify a build source by filling a NavMeshBuildSource struct and adding that to the list of sources that are passed to the bake function. Alternatively, you can use the collect API to quickly create NavMesh build sources from available render meshes or physics colliders. See NavMesh.CollectSources.

#pragma strict
public class Example extends MonoBehaviour {
	// Make a build source for a box in local space
	public function BoxSource10x10() {
		var src: var = new NavMeshBuildSource();
		src.transform = transform.localToWorldMatrix;
		src.shape = NavMeshBuildSourceShape.Box;
		src.size = new Vector3(10.0f, 0.1f, 10.0f);
		return src;
	}
}
using UnityEngine;
using UnityEngine.AI;

public class Example : MonoBehaviour { // Make a build source for a box in local space public NavMeshBuildSource BoxSource10x10() { var src = new NavMeshBuildSource(); src.transform = transform.localToWorldMatrix; src.shape = NavMeshBuildSourceShape.Box; src.size = new Vector3(10.0f, 0.1f, 10.0f); return src; } }

Variables

areaDescribes the area type of the NavMesh surface for this object.
componentPoints to the owning component - if available, otherwise null.
shapeThe type of the shape this source describes. See Also: NavMeshBuildSourceShape.
sizeDescribes the dimensions of the shape.
sourceObjectDescribes the object referenced for Mesh and Terrain types of input sources.
transformDescribes the local to world transformation matrix of the build source. That is, position and orientation and scale of the shape.