NavMeshObstacle.center

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

public Vector3 center;

Description

The center of the obstacle, measured in the object's local space.

Note: When a NavMeshObstacle is created the center is set to zero.

// Default center is (0, 0, 0)
using UnityEngine;
using UnityEngine.AI;

public class ExampleScript : MonoBehaviour { void Start() { NavMeshObstacle navMeshObstacle = gameObject.AddComponent<NavMeshObstacle>(); Debug.Log(navMeshObstacle.center); } }

Did you find this page useful? Please give it a rating: