NullReferenceException:对象引用未设置为对象的实例当im靠近胶囊时显示错误 我的代码
using System.Collections.Generic;
使用UnityEngine;
使用UnityEngine.AI;
公共课EnemyControl:MonoBehaviour {
Transform PlayerTransform;
NavMeshAgent nma;
// Use this for initialization
void awake () {
PlayerTransform = GameObject.FindGameObjectWithTag ("Player").transform;
nma = GetComponent <NavMeshAgent>();
}
void Update () {
nma.SetDestination (PlayerTransform.position);
}
}
答案 0 :(得分:0)
我的猜测是.FindGameObjectWithTag ("Player")
为空。