# How to get started with Unity3D Editor interface?

The Unity Editor has **four main sections:**

![Unity3D Editor Interface ](/files/-Lz8uZbku6MZofFYEaVS)

#### &#x20;Scene view&#x20;

This is where you can edit the current Scene by selecting and moving objects in the 3D space for the game. In this kit, the game level is contained in one Scene.

#### Hierarchy window&#x20;

This is a list of all the GameObjects in a Scene. Every object in your game is a GameObject. These can be placed in a parent-child hierarchy, which lets you group objects — this means that when the parent object is moved, all of its children will move at the same time.

#### Inspector window&#x20;

This display all settings related to the currently selected object. You will explore this window more during the walkthrough.

#### Project window&#x20;

This is where you manage your Project Assets. Assets are the media files used in a Project (for example, images, 3D models and sound files). The Project window acts like a file explorer, and it can be used to explore and create folders on your computer. When the walkthrough asks you to find an Asset at a given file path, use this window.

**TIP**: If your Editor layout doesn’t match the image above, use the **layout drop-down** menu at the top right of the toolbar to select **Default**.

![Going back to default editor layout.](/files/-Lz8wt8LbMEWsjaer3ye)

## Unity Editor Toolbar

![Unity Editor Toolbar.](/files/-Lz8xoqDqiQY9sVSf1uO)

The toolbar includes a range of useful tool buttons to help you design and test your game.

### Play Buttons

#### Play&#x20;

Play is used to test the Scene which is currently loaded in the Hierarchy window, and enables you to try out your game live in the Editor.&#x20;

#### Pause&#x20;

Pause, as you have probably guessed, allows you to pause the game playing in the Game window. This helps you spot visual problems or gameplay issues that you wouldn’t otherwise see.

#### Step&#x20;

Step is used to walk through the paused Scene frame by frame. This works really well when you’re looking for live changes in the game world that it would be helpful to see in real time.

### Manipulating objects

![](/files/-Lz8yR1Rd3wArFlsaVk7)

These tools move and **manipulate** the **GameObjects** in the **Scene view**. You can click on the buttons to activate them, or use a **shortcut key**.

#### Hand Tool

![Hand Tool Keyboard Shortcut: Q](/files/-Lz8ylNIlgX6Uyrf0DwB)

You can use this tool to move your Scene around in the window. You can also use middle click with the mouse to access the tool.

#### Move Tool

![Move Tool Keyboard Shortcut: W](/files/-Lz8ywDsz8MqWDDQvaUo)

This tool enables you to select items and move them individually.

#### Rotate Tool

![Rotate Tool Keyboard Shortcut: E](/files/-Lz8z8L7qM32I5bxotIy)

Select items and rotate them with this tool.

#### Scale Tool

![Scale Tool Keyboard Shortcut: R](/files/-Lz8zelqKA_miaDvvZtY)

Tool to scale your GameObjects up and down.

#### Rect Transform Tool

![Rect Transform Tool Keyboard Shortcut: T](/files/-Lz8zwSdXMJ0ChTBSjEk)

This tool does lots of things. Essentially, it combines moving, scaling and rotation into a single tool that’s specialized for 2D and UI.

#### Rotate, Move or Scale

![Rotate, Move or Scale Tool Keyboard Shortcut: Y](/files/-Lz9-LImQ0aoddgBgYSA)

This tool enables you to **move**, **rotate**, or **scale** GameObjects, but is more specialized for 3D.

### Focusing on GameObject

![Focusing on an GameObject Keyboard Shortcut: F](/files/-Lz917eAIyqNpkAM0dZI)

Another useful shortcut is the **F** key, which enables you to focus on a selected object. If you forget where a GameObject is in your Scene, select it in the Hierarchy. Then, move your cursor over the Scene view and press **F to center** it.

### Navigating with the mouse

When you’re in the Scene view, you can also do the following:

* Left click to select your GameObject in the Scene.
* Middle click and drag to move the Scene view’s camera using the hand tool.

&#x20;For more advice on moving GameObjects in the Scene view, see [Scene View Navigation](https://docs.unity3d.com/Manual/SceneViewNavigation.html) in the Manual.<br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.xrdev.app/mixed-reality-docs/lessons/lesson1/project/how-to-get-started-with-unity3d-editor-interface.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
