简单寻路

1.先把地形选为静态
2.烘焙地形
3.给跟踪者挂上NavMeshAgent组件
4.跟跟踪者挂上跟随脚本

void Update () {
        if (target != null)
        {
            GetComponent().destination = target.position;
        }
    }

5.把被跟踪者拖到脚本上

你可能感兴趣的:(简单寻路)