Version: 2017.2
public bool SetDestination (Vector3 target);

パラメーター

target 移動先の目的地点

戻り値

bool 目標地点が正常に要求された場合、 True 、それ以外の場合は False 。

説明

移動先の目的地点を新規設定するか更新して、新たに経路探索を開始します

経路は数フレーム後まで利用可能とならない場合があることに注意してください。 経路が算出されている間、pathPending が true になります。 もし有効な経路が利用可能となったときエージェントは動作を再開します。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { private AI.NavMeshAgent agent; void Start() { agent = GetComponent<AI.NavMeshAgent>(); } void Update() { RaycastHit hit; if (Input.GetMouseButtonDown(0)) { Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition); if (Physics.Raycast(ray, out hit)) agent.SetDestination(hit.point); } } }