Version: 2020.3
public bool CalculatePath (Vector3 targetPosition, AI.NavMeshPath path);

参数

targetPosition 所请求路径的最终位置。
path 生成的路径。

返回

bool 如果找到路径,则为 true。

描述

计算到指定点的路径并存储生成的路径。

此函数可用于提前规划路径,以避免游戏中需要该路径时发生延迟。 另一个用途是在移动代理之前 检查目标位置是否可到达。

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

public class ExampleClass : MonoBehaviour { public Transform target; private NavMeshAgent agent; void Start() { agent = GetComponent<NavMeshAgent>(); NavMeshPath path = new NavMeshPath(); agent.CalculatePath(target.position, path); if (path.status == NavMeshPathStatus.PathPartial) { } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961