Version: 2023.1
public Vector3[] corners ;

描述

路径的角点。(只读)

角也称为“路标”,定义了一条路径上改变方向的位置(例如,路径由许多在角之间移动的直线组成)。

using UnityEngine;
using UnityEngine.AI;
using System.Collections;

public class ExampleClass : MonoBehaviour { float PathLength(NavMeshPath path) { if (path.corners.Length < 2) return 0; float lengthSoFar = 0.0F; for (int i = 1; i < path.corners.Length; i++) { lengthSoFar += Vector3.Distance(path.corners[i - 1], path.corners[i]); } return lengthSoFar; } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961