您的位置:首页 > 移动开发 > Unity3D

【Unity】unity3d NavMeshAgent 导航显示路径

2017-10-30 09:55 766 查看
首先看一下效果


using UnityEngine;
using UnityEngine.AI;

// Use physics raycast hit from mouse click to set agent destination
[RequireComponent(typeof(NavMeshAgent))]
public class ClickToMove : MonoBehaviour
{
NavMeshAgent m_Agent;
RaycastHit m_HitInfo = new RaycastHit();
public LineRenderer _lineRenderer;
void Start()
{
m_Agent = GetComponent<NavMeshAgent>();
}

void Update()
{

if (Mathf.Abs(m_Agent.remainingDistance) < 1.5f)
{
_lineRenderer.positionCount = 0;
_lineRenderer.gameObject.SetActive(false);
}
if (_lineRenderer.gameObject.activeInHierarchy)
{
Vector3[] _path = m_Agent.path.corners;//储存路径
var path = _path;
_lineRenderer.SetVertexCount(_path.Length);//设置线段数

for (int i = 0; i < _path.Length; i++)
{
Debug.Log(i + "= " + _path[i]);
_lineRenderer.SetPosition(i, _path[i]);//设置线段顶点坐标
}
}

if (Input.GetMouseButtonDown(0) && !Input.GetKey(KeyCode.LeftShift))
{
var ray = Camera.main.ScreenPointToRay(Input.mousePosition);
if (Physics.Raycast(ray.origin, ray.direction, out m_HitInfo))
{
m_Agent.destination = m_HitInfo.point;
//m_Agent.Stop();
_lineRenderer.gameObject.SetActive(true);
}
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: