Unity | Introduction to Interface Last Updated : 30 Sep, 2022 Comments Improve Suggest changes Like Article Like Report The article "Game Development with Unity | Introduction" introduces about Unity and how to install it. In this article, we will see how to create a new project and understand the interface of the Unity Game Editor. Creating a new project Open the Unity Hub. Click on New button at the top right. Select 3D Project. Give a Project Name and create the project. The Unity editor will open by default with a sample scene. The arrangements of different tabs in the Editor window gives easy access to the most common functionalities. The image below shows the default layout: Summary of all different tabs and their uses: Project Window: The project window consists of two panels. The left panel of the browser shows the folder structure of the project as a hierarchical list. When a folder is chosen from the list by clicking, its contents are going to be shown within the panel to the proper. You can click the tiny triangle to expand or collapse the folder, displaying any nested folders it contains. Hold down Alt while you click to expand or collapse any nested folders recursively. Scene/Game View: The Scene Window is a place where we will actually make our game. The Game window shows the starting scene of the Game when we hit the play button. We will learn more about these in future articles. Inspector Window: The inspector window shows the properties of any selected GameObjects. Toolbar: The toolbar contains various icons for different functionalities. These buttons are for: The first 6 buttons from the left (from the hand button to the bulls-eye button) are called Transform Tools. They are used to change the view of the scene and to apply basic changes to game objects like changing their position, rotation, etc. The next two Buttons (The Center/Pivot and the Global/Local) are called Gizmo tools. They are used to change the views of a game object. Next are the Play/Pause/Step Buttons. These are used to run the games that we create in the scene. The cloud button opens the Unity Services window. The Account button is used for accessing your Unity account. The Layers button is used to select which game objects are to be displayed. The Layout button gives different options to arrange all these discussed windows. The view which opened by default is named Default. Hierarchy Window: The Hierarchy window shows the list of all the active game objects in the scene. These game objects can be visible or hidden. Hidden game objects are greyed out in the hierarchy tab. Detailed information on all the aspects of the Editor can be found in the official manual link. Comment More infoAdvertise with us Next Article Unity | Introduction to Interface A AbhijeetSridhar Follow Improve Article Tags : Game Theory Web Technologies DSA Unity Practice Tags : Game Theory Similar Reads Game Development with Unity | Introduction Game Development: The article "Do you want to make your own games?" introducing the basic concept of game development. As mentioned in the article, Unity is one of the most popular game engines for both 2D and 3D games. You don't need to have a strong understanding of physics or mathematics to devel 3 min read Semantic-UI Icon Set Interfaces Semantic UI is an open-source development framework that provides pre-defined classes to make our website look beautiful, amazing, and responsive. It is similar to Bootstrap which has predefined classes. It uses jQuery and CSS to create the interfaces. It can also be directly used via CDN like boots 3 min read What are TypeScript Interfaces? TypeScript interfaces define the structure of objects by specifying property types and method signatures, ensuring consistent shapes and enhancing code clarity.Allow for optional and read-only properties for flexibility and immutability.Enable interface inheritance to create reusable and extendable 4 min read Interfaces in TypeScript TypeScript is a statically typed superset of JavaScript that adds optional types, classes, interfaces, and other features to help developers build robust and maintainable applications. One of the most powerful features of TypeScript is interfaces, which allow you to define the structure of objects, 4 min read Semantic-UI Icon Set Communication Semantic UI is an open-source development framework that provides pre-defined classes to make our website look beautiful, amazing, and responsive. It is similar to Bootstrap which has predefined classes. It uses jQuery and CSS to create the interfaces. It can also be directly used via CDN like boots 5 min read Like