Initially I had a MAIN scene that loads quickly on the iPhone (1 scene total).
I added an empty START scene to load the MAIN scene (2 scenes total).
When I put this on the iPhone, the START scene creates a considerable lag before the MAIN scene loads.
Am I doing something wrong or is that normal?
This Javascript code sits in an empty game object in the START scene:
// Scene | Load start up
function Awake()
{
DontDestroyOnLoad(this);
Application.LoadLevel("sceConWom");
}
Thanks.