- Home /
Unity bugged after Ios Build
My unity game stopped working properly since I built it in ios builder. It gives me error such as "NullReferenceException: Object reference not set to an instance of an object" even if the object is set properly, with the same code written as before building to Ios. Does Ios building change something? Or reset some scene variable? Can I restore a previous version of the project without having a backup? Thanks.. I'm just afraid
For example, I have these lines of code:
if (! barBonus) {
barBonus = GameObject.Instantiate (barPrefab, Vector3.zero, Quaternion.identity) as GameObject;
}
But even if barBonus is set, it instantiates many barPrefabs. These lines of code (100% sure about that) used to work before ios build.
Comment