Getting basic core concepts into Unity
So, you have some rough ideas of what you want to do in Unity. You might have a simple mock-up ready and now you want to see how it feels as you navigate through that mock-up. So now, you need to learn how certain navigation systems work within Unity. In this section, we will look at how you can get your mock-up into Unity.
Quick navigation
What happens if we have more than one screen in our game? In this case, we need to simulate the passage from one screen to another without implementing it all. After all, we are just prototyping to see which is the best solution.
So, now you have some rough ideas of what you want to do in Unity. You might have a simple mock-up ready, and now you want to see how it feels as you navigate through that mock-up. This can be done in many ways in Unity, we will see just one of these. The core idea is to include every screen inside an empty game object. Once we have all our screens inside some game objects, it's also useful...