Version: 2017.2
Los 'Cómos' de la Navegación
Mover un Agente a una Posición clickeada por el Mouse (ratón)

Decirle a un NavMeshAgent para Mover a un Destino

You can tell an agent to start calculating a path simply by setting the NavMeshAgent.destination property with the point you want the agent to move to. As soon as the calculation is finished, the agent will automatically move along the path until it reaches its destination. The following code implements a simple class that uses a GameObject to mark the target point which gets assigned to the destination property in the Start function. Note that the script assumes you have already added and configured the NavMeshAgent component from the editor.

    // MoveDestination.cs
    using UnityEngine;
    
    public class MoveDestination : MonoBehaviour {
       
       public Transform goal;
       
       void Start () {
          NavMeshAgent agent = GetComponent<NavMeshAgent>();
          agent.destination = goal.position; 
       }
    }
    // MoveDestination.js
    var goal: Transform;

    function Start() {
      var agent: NavMeshAgent = GetComponent.<NavMeshAgent>();
      agent.destination = goal.position; 
    }
Los 'Cómos' de la Navegación
Mover un Agente a una Posición clickeada por el Mouse (ratón)
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961