1
2
3
4
5
6
  • VR产品展示

导航脚本

发布时间:2019-03-08 08:25   发布人:梁军妮   浏览次数:215

using System.Collections.Generic;
using UnityEngine;

public class monster04 : MonoBehaviour {




    //
導航系統
    NavMeshAgent MonsterAI;
    //
宣告玩家物件
    public GameObject Player;
    // Use this for initialization
    void Start () {
        //
導航元件MonsterAI = 自身物件中的NavMeshAgent屬性
        MonsterAI = GetComponent<NavMeshAgent>(); 
    }
    
    // Update is called once per frame
    void Update ()
    {
        if (Player == null) {
            //
尋找場景中Tag標籤為Player的物件
            Player = GameObject.FindWithTag ("Player");
        } else {
            //
導航至Player物件的座標

            MonsterAI.destination = Player.transform.position;
        }
    }
}