Hi guys,
When i publish my project some scenes are missing. To be more precises, scenes are loading but just displaying the 2D gui.
When i take the ‘missing’ scenes and set 'em index 0 in da publish list its ok, but the other levels arent. Do you have some suggestions ?
Freid
actually it seems that my first camera stays alive within several scenes, how can i ‘kill’ it and assign the other cameras as main for each level ?
You probably called DontDestroyOnLoad on it.
Either dont do that. Or once you actualy want to delete it, destroy its game object using: Destroy(gameObject);
thanks Joachim,
Indeed i was using dontdestroy command in an initialisation script. Remove the command solved my problem. I dont get yet how it was ‘spreading’ to my cameras, but i guess i’ll find it.
Thanks again 