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

Script language

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

NavMeshObstacle.size

public Vector3 size;

Description

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

The size will be scaled by the transform's scale.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { AI.NavMeshObstacle obstacle = GetComponent<AI.NavMeshObstacle>(); Mesh mesh = GetComponent<MeshFilter>().mesh; obstacle.shape = UnityEngine.AI.NavMeshObstacleShape.Box; obstacle.size = mesh.bounds.size; } }

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