Unity Editor Interface: Scene, Game, Hierarchy, Inspector, Project, and Console
A complete beginner-friendly guide to the Unity Editor interface: understand the Scene and Game views, manage GameObjects in the Hierarchy, edit Components in the Inspector, find Assets in the Project window, read errors in the Console, and practice a simple workflow so the Editor no longer feels overwhelming.
Unity Editor Interface: Scene, Game, Hierarchy, Inspector, Project, and Console
The Unity Editor can look busy when you open it for the first time. At the beginner stage, however, you mainly need to understand six core areas: Scene, Game, Hierarchy, Inspector, Project, and Console. Once you understand what each area does, the Editor becomes much easier to read.
A quick mental model: the Hierarchy tells you what is in the Scene; the Scene lets you place and manipulate objects; the Inspector lets you edit properties; the Project window stores Assets; the Game view shows what the player sees; and the Console tells you what Unity is reporting.
1. Scene View — where you build the world
The Scene View is the interactive workspace where you visualize and edit your Scene. You can select, move, rotate, and scale GameObjects such as characters, props, Cameras, Lights, and environment objects.
It is not the final game screen. Think of the Scene View as a level designer’s workbench: you can inspect the Scene from different angles and place objects where you want them.
Basic Scene View actions
- Select a GameObject by clicking it in the Scene or selecting it in the Hierarchy.
- Use Move to reposition it; W is a common shortcut.
- Use Rotate to change orientation; E is a common shortcut.
- Use Scale to change its size; R is a common shortcut.
- Navigate around the Scene to inspect your level from different angles.
Beginner tip: if you get lost while navigating the Scene, select a GameObject in the Hierarchy and use the appropriate frame/focus selection command to bring the Scene camera back to the selected object.
2. Game View — what the player will see
The Game View displays the image rendered by the Camera or Cameras in your application. An object can exist in the Scene View but still be missing from the Game View if the Camera cannot see it, it is outside the frame, or rendering settings prevent it from appearing.
When you press Play, Unity runs the project inside the Editor so you can test gameplay. The Game View then acts as a preview of the application from the player’s perspective.
Remember: Scene View = where you edit. Game View = the Camera result. Confusing these two is one of the most common beginner mistakes.
3. Hierarchy — the GameObject list for the current Scene
The Hierarchy displays the GameObjects in the current Scene. When you add or remove GameObjects from the Scene, the Hierarchy changes accordingly. You can use it to select objects, rename them, organize them, and create parent/child relationships.
Think of the Hierarchy as the structure tree of your Scene. As the Scene grows, clear names and sensible grouping become increasingly important.
- Find the GameObject named Cube in the Hierarchy.
- Click Cube and look at the Scene View: the same object becomes selected.
- Rename Cube to Player_Test or another meaningful name.
- Create an Empty GameObject as a group, then drag child objects under it to understand parenting.
4. Inspector — where you view and edit Components
The Inspector displays and lets you edit properties, Components, and settings for the currently selected object. Select a different GameObject and the Inspector content changes to match that object.
For beginners, Transform is usually the first Component to understand. Transform contains Position, Rotation, and Scale — the values that control where a GameObject is, how it is oriented, and how large it is.
- Select Cube in the Hierarchy.
- Find the Transform Component in the Inspector.
- Change Position X slightly and watch the Cube move in the Scene.
- Change Rotation Y and observe its orientation.
- Change Scale X/Y/Z and observe its size.
Core concept: a GameObject is the object container; its behavior and data come from the Components attached to it. A large part of learning Unity is learning how GameObjects and Components work together.
5. Project Window — the project’s Asset library
The Project Window displays project-related files and is the main place to navigate and find Assets. You will commonly see Scenes, C# scripts, textures, materials, audio, animations, Prefabs, and other resources here.
If the Hierarchy represents objects currently placed in the Scene, the Project window is the library of resources the project can use. An Asset can exist in the Project window without being placed in the Scene.
- Create clear folders such as Scenes, Scripts, Materials, Prefabs, Textures, and Audio.
- Do not leave hundreds of files directly under Assets.
- Use meaningful file names instead of names such as New Material 1 or New Script 2.
- Avoid casually moving or deleting project files outside Unity before you understand .meta files.
6. Console — where you read Logs, Warnings, and Errors
The Console displays errors, warnings, and messages generated by the Unity Editor or by your scripts. If a script fails to compile, a NullReferenceException appears, a reference is missing, or Unity reports a problem, the Console is usually the first place to check.
Do not panic just because a message is red. Read the error type, message, script name, and line number. Many beginner problems become much easier once you follow the location Unity gives you.
- Fix red Errors first, especially compilation errors.
- Read the message and look for a script name and line number.
- Double-click an error to open the related location in your IDE when supported.
- After editing, return to Unity and let the Editor compile again.
- Handle Warnings after the project runs because they can reveal potential problems.
7. Play Mode — test directly inside the Editor
The toolbar includes a Play button that runs the project. In Play Mode, your application runs inside the Editor and you can inspect the Game View, change values, read the Console, and debug behavior.
One important rule: many Inspector changes made during Play Mode are temporary and are reset when you stop. If you discover a useful value during Play Mode, note it before exiting if you want to keep it.
8. A 5-step workflow that prevents beginner overload
Do not try to memorize the whole Editor. Repeat a small workflow instead. Once this loop feels natural, you can complete many basic Unity exercises without getting lost in the interface.
- Hierarchy: select the GameObject you want to work on.
- Scene: locate it and manipulate it visually.
- Inspector: edit Components and values.
- Game: press Play and test what the player sees.
- Console: if something is wrong, read the error or warning and return to fix it.
9. 10-minute practice exercise
- Create a basic 3D project and open the default Scene.
- Create a Cube from the Hierarchy or GameObject menu.
- Select the Cube and edit Position, Rotation, and Scale in the Inspector.
- Create a Material in the Project window and assign it to the Cube.
- Adjust the Camera so the Cube is clearly visible in the Game View.
- Press Play and observe the Game View.
- Create a small script with
Debug.Log("Hello ASCENO");, attach it to the Cube, and watch the Console. - Stop Play Mode and check which changes were kept and which were reset.
10. Common beginner misconceptions
- Confusing Scene View with Game View.
- Looking for an Asset in the Hierarchy before it has been placed in the Scene.
- Editing the wrong object because you did not check the current Inspector selection.
- Ignoring the Console when the project fails to run.
- Changing values during Play Mode and losing them after Stop.
- Using poor file and object names until the project becomes difficult to navigate.
You now understand the Unity Editor interface
You do not need to learn every Unity menu yet. If you can comfortably use these six core areas and the basic workflow, you are ready to move on to GameObjects, Components, Transform, and C# scripting.
Recommended next article: GameObjects and Components in Unity — understand the basic building blocks behind every object in a game.
ASCENO • Unity Beginner Series
