Basically I would like to know how I can go from an outside scene to an inside one in unity?

Hello, I am making a 3d walk-through that will start with an outside view of a desert scene and an entrance in-front of you. you would walk through the entrance into a corridor then onto the tomb. I have already pre built the entrance,corridor and tomb and was wondering how I could go about making this level?

Basically I would like to know how I can go from an out side scene to an inside one in unity?

thank you

Put a trigger on the door to the tomb.
Once you collide with the door, use Application.LoadLevel(x) to load your indoor scene.

Make sure you add the indoor and outdoor scene to your build settings.

ok thak you i will give that a try