📜  unity3d 在导航网格上找到 y 位置 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:02.054000             🧑  作者: Mango

代码示例1
private bool SetDestination(Vector3 targetDestination)
{
  NavMeshHit hit;
  if (NavMesh.SamplePosition(targetDestination, out hit, 1f, NavMesh.AllAreas))
  {
    agent.SetDestination(hit.position);
    return true;
  }
  return false;
}