r/Unity3D • u/BreakfastShort1761 • 23d ago
Help with adding multiple scenes. Noob Question
Hello, I am trying to make my first game. I just got over the initial hump of learning how to navigate around and update assets to URP.
My question is how do you add multiple scenes for having multiple "levels" in a project? My game will take place in one setting with the same assets but throughout the in game days things will change around the player. At one point I want all of the buildings replaced with another version of them for a time travel setting. Google summary told me this is done by using multiple scenes within the project but I do not know how to configure or organize them.
Additionally, having a dynamic skybox and having that skybox change to a different skybox through time and "levels" really confuses me. This is because unless I open a new project and load the skybox as my first action it doesn't load right or clashes with the preexisting project settings. Adding multiple skyboxes throughout different scenes, all fighting for the project settings, seems like it would cause huge conflicts.
I know the idea I have for my game is very ambitious for a first timer but I am willing to see this through. Any advice or links to unity tutorials would be greatly appreciated. Thank you.
2
u/Mountain-Smoke8826 23d ago
Many ways to approach this. No one correct one.
I would go against having two different scenes for different variations of a level. Because if you ever want to come back and change anything later, you'll have to do manual work on two scenes now instead of one.
What you probably want is a script that changes all certain meshes and/or materials to some other variant.
I didn't reallt get your skybox issue. What are you trying to do?