I’m using Unity 4.3.2 with the latest 2DToolkit. The game is complete and works fine on Android but some of the 2D game objects that get instantiated in scripts are not being displayed on iPhone. I can manually place game objects into the scene and they are shown (like prefabs dragged into the heirarchy). But not when I instantiate it from code.
GameObject levelStarClone = (GameObject)Instantiate(levelStar);
levelStarClone.transform.position = new Vector3(-885.381f, 222.3519f, -428.7173f);
I am using the Pro version of Android but not for iOS. Could that have anything to do with it? I’m not sure what could be wrong?