Is there a way to reload the level without changing the camera position.
I am using Application.loadLevel(Application.LoadedLevel)
Any help would be great thanks.
Is there a way to reload the level without changing the camera position.
I am using Application.loadLevel(Application.LoadedLevel)
Any help would be great thanks.
you can use DontDestroyOnLoad to make sure the the camera isn’t affected by level loads, you will need to manually get rid of the camera when you need to using Destroy and you need to take care of duplicate camera’s if there is a camera in the scene when you load it. Another way is to save the camera’s position and other info to PlayerPrefs and then load it and set the camera’s position in the Start function.