I am getting "NullReferenceException: Object reference not set to an instance of an object", I dont know what is wrong in my code:
I have a class "EnemyInfo" as
public class EnemyInfo {
public GameObject enemyObject;
}
In another class "Enemies" I am using it like this:
public class Enemies : MonoBehaviour {
public static List<GameObject> gos;
public static List<EnemyInfo> gosN = new List<EnemyInfo>();
void FixedUpdate() {
gos = new List<GameObject>(GameObject.FindGameObjectsWithTag("enemy"));
gosN.Add(null)
gosN[0].enemyObject = gos[0].gameObject //here I am getting error, dont know y :S
}
}
nullvalue to the list, then tried to access a property of it in the next line. Of course, it's going to throw a NullReferenceException when you do that. – tvanfosson Dec 27 '11 at 14:33