NullReferenceException:当我到达敌人时,对象引用未设置为对象的实例错误

时间:2018-05-31 04:33:18

标签: c# unity3d

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);





}

}

enter image description here

1 个答案:

答案 0 :(得分:0)

我的猜测是.FindGameObjectWithTag ("Player")为空。