Creating projects
Now that we have Unity installed, we can start creating our game. To do so, we need to create a project, which is a folder containing all the files that your game will comprise. These files are called assets and there are different types, such as images, audio, 3D models, script files, and so on. In this section, we will learn how to manage a project by addressing the following concepts:
- Creating a project
- Project structure
First, let's learn how to create a blank project so that we can start developing our project.
Creating a project
As with Unity installations, we will use the Unity Hub to manage projects. We need to follow these steps to create one:
- Open Unity Hub and click on the Projects button. Then, click on NEW, as illustrated in the following screenshot:
- Pick the Universal Render Pipeline template. We will be creating a 3D game with simple graphics, prepared...