首页 > TAG信息列表 > NavMeshAgent

NavMeshAgent.SetDestination后不会自动寻路问题

# 下面的代码是想实现点击鼠标左键,寻路到指定的位置;但是运行后,并不会寻路,而是立即打印了end void Update() { if (Input.GetMouseButtonUp(1)) { _navMeshAgent.enabled = true; _navMeshAgent.SetDestination(_targetPos); } if (_navMeshAge