Skip to main content

๐Ÿ–ฅ๏ธ Lesson 1.3: The Unity Editor Interface

The Unity Editor can look overwhelming at first โ€” panels, tabs, and buttons everywhere. In this lesson we slow right down and give you a guided tour of every part you'll use, so the whole screen starts to feel familiar.

๐ŸŽฏ Learning Objectives

By the end of this lesson, you will be able to:

  • Name the six main areas of the Unity Editor and say what each one does
  • Tell the difference between the Scene view (your workspace) and the Game view (what the player sees)
  • Select an object in the Hierarchy and read its details in the Inspector
  • Identify the Play, Pause, and Step buttons and know what they do

Estimated Time: 35 minutes

You'll need: Unity 6 installed and any project open (Lesson 1.2 covered installation). No coding yet โ€” this lesson is all about finding your way around.

In This Lesson

Your Workshop

Think of the Unity Editor as a workshop. A carpenter's workshop has a workbench, a rack of tools, a shelf of materials, and a doorway to see the finished piece. Unity is the same โ€” each panel is one of those stations. Once you know what each one is for, the clutter turns into a workspace.

Everything you see in this lesson comes from a real Unity 6 project โ€” a small "collect the stars" scene with a robot character. Here's the actual scene, rendered straight out of Unity:

A real Unity render: a grey robot standing on a large white grid floor under a blue sky, with yellow collectible stars and coloured cubes around it.
Figure 1: A real frame rendered from our example scene in Unity 6. The robot is the player; the yellow stars are collectibles. We'll build a game much like this by the end of the course.
๐Ÿ’ก Don't try to memorize everything. You will not remember all of this at once, and you don't need to. The goal is recognition โ€” so that when we say "open the Inspector," you know roughly where to look. It becomes second nature within a few lessons.

The Big Picture: Six Areas

No matter how it's arranged, a default Unity layout has six main areas. Here's how they're laid out, with each area numbered:

Unity 6 default Editor layout A diagram of the Unity Editor window divided into six labelled areas: Toolbar across the top, Hierarchy on the left, Scene and Game views in the centre, Inspector on the right, and Project and Console panels across the bottom. Hierarchy Scene Game Inspector Project Console 1 2 3 4 5 6
Figure 2: The default Unity 6 layout, drawn to match the real Editor. Your panels may be sized differently, but every layout has these same six areas.
  1. 1Toolbar โ€” the strip across the top. It holds the transform tools and the all-important Play / Pause / Step buttons that start and stop your game.
  2. 2Hierarchy โ€” a list of every object currently in your scene. Think of it as the cast list.
  3. 3Scene & Game views โ€” two tabs sharing one space. Scene is your 3D workbench; Game is exactly what the player will see.
  4. 4Inspector โ€” shows all the details of whatever object you've selected, and lets you change them.
  5. 5Project โ€” every file in your game: models, images, sounds, scripts. This is your materials shelf.
  6. 6Console โ€” where Unity prints messages, warnings, and errors. Your early-warning system.

๐Ÿ“– Definition

Panel (or Window): one of the rectangular areas of the Editor, like the Hierarchy or Inspector. Panels can be dragged, resized, and docked. A saved arrangement of panels is called a Layout.

Scene View vs Game View

This is the single most common source of confusion for beginners, so let's make it crystal clear. They share the same space (two tabs, area โ‘ข), but they do very different jobs.

Scene viewGame view
Your workbench. A free-floating 3D view you can fly around in. The final result. Shows precisely what the player's camera sees.
You move, rotate, and place objects here. You watch and test the game here โ€” it comes alive when you press Play.
Shows helpers: grids, icons, outlines (called gizmos). Clean โ€” no helpers, just the game.

Figure 1 at the top of this lesson is a real Game view render โ€” it's what the player sees through the camera. In the Scene view you'd see the same robot and stars, but also grid lines, the camera's icon, and selection outlines to help you build.

โš ๏ธ A classic beginner moment: "I pressed Play but nothing happens / I can't see my character!" Nine times out of ten, you're looking at the Scene tab instead of the Game tab, or your camera isn't pointed at the action. Check which tab is selected first.

Hierarchy & Inspector: A Team

The Hierarchy and the Inspector work together constantly. The rule is simple:

Click an object in the Hierarchy โ†’ its details appear in the Inspector.

The Hierarchy โ€” everything in your scene

Here is the actual Hierarchy from our example scene. Notice that Ground is selected (highlighted), and some objects have a โ–ถ arrow โ€” that means they contain child objects you can expand.

The Hierarchy panel The Unity Hierarchy panel listing the objects in the scene: Directional Light, Ground (selected), four coloured boxes, and collapsed groups named Collectibles, Tutorial, Postprocessing and PlayerRobot. Hierarchy ๐Ÿ” Searchโ€ฆ GetStarted_Scene Directional Light Ground 01_Box_Yellow 02_Box_Orange 03_Box_Orange 04_Box_Red Collectibles Tutorial Postprocessing PlayerRobot โ–ถ arrow = expandable (has child objects) Blue row = the currently selected object
Figure 3: The real Hierarchy of our example scene, recreated in the Editor's dark theme. Ground is selected.

The Inspector โ€” the details of one object

With Ground selected, the Inspector shows what it's made of. Every object is a stack of components (we cover these properly in Module 2). For now, just notice that the Inspector lists them and shows their settings โ€” like the exact position, rotation, and scale:

The Inspector panel for the Ground object The Unity Inspector showing the Ground object with a Transform component (Position 0, -0.02, 0; Rotation 0,0,0; Scale 30,10,30), a Mesh Filter set to Cube, a Mesh Renderer using Material_WhiteGrid, and a Box Collider, plus an Add Component button. Inspector Ground Static โ–พ Tag Untagged โ–พ Layer Default โ–พ Transform Position X0 Y-0.02 Z0 Rotation X0 Y0 Z0 Scale X30 Y10 Z30 Mesh Filter Mesh Cube Mesh Renderer Material Material_WhiteGrid Box Collider Add Component Each grey bar is one Component. X = red, Y = green, Z = blue โ€” the three axes of 3D space. These are the object's real values, straight from the project.
Figure 4: The Inspector for Ground. Its real values: a Cube mesh scaled to 30 ร— 10 ร— 30 with a white-grid material and a Box Collider โ€” that's the floor you saw in Figure 1.

โœ… Pro Tip

The little coloured letters X Y Z are used everywhere in Unity for the three directions in 3D space. Red = left/right, Green = up/down, Blue = forward/back. Learning this colour code now will pay off in every later lesson.

The Toolbar & Play Controls

In the centre of the Toolbar are three buttons that control your game. These are the ones you'll press thousands of times:

The Play, Pause, and Step buttons A close-up of the three central Toolbar buttons: a triangular Play button, a double-bar Pause button, and a Step button, with labels explaining each. Playstart / stop Pausefreeze Stepone frame
Figure 5: The Play, Pause, and Step buttons, centred in the Toolbar.
  • โ–ถ Play โ€” starts your game inside the Editor. Press it again to stop. The whole Editor tints slightly to remind you you're in Play mode.
  • โšโš Pause โ€” freezes the running game so you can inspect it mid-action.
  • โ–ถโ˜ Step โ€” while paused, advances the game by a single frame. Great for studying fast events.

โš ๏ธ Watch Out: the #1 beginner trap

Any changes you make to objects while in Play mode are thrown away the moment you press Stop. It's a safe sandbox to test in โ€” but if you carefully position something during Play, it will snap back when you stop. Always exit Play mode before doing real work. (Unity's Play-mode tint is your reminder.)

Hands-on: Take the Tour

๐Ÿ‹๏ธ Exercise 1: Find every panel

Objective: Build muscle memory for where things live. Open any Unity project (an empty one is fine) and locate each area.

Instructions:

  1. Find the Hierarchy on the left. How many objects are listed? (A brand-new scene usually has a Main Camera and a Directional Light.)
  2. Click the Scene tab, then the Game tab. Watch how the view changes from workbench to player's-eye.
  3. Click any object in the Hierarchy and watch the Inspector on the right fill up with its details.
  4. Find the Project panel at the bottom. Click a folder to see its contents.
  5. Find the Console tab next to Project. It may be empty โ€” that's good, it means no errors.
  6. Locate the Play button at the top-centre. Don't press it yet โ€” just find it.
๐Ÿ’ก Hint: I can't find a panel!

Any panel can be reopened from the top menu: Window โ–ธ General, then choose Hierarchy, Inspector, Console, etc. If your layout looks messy, reset it with Window โ–ธ Layouts โ–ธ Default.

๐Ÿ‹๏ธ Exercise 2: Selection detective

Objective: Confirm the Hierarchy โ†’ Inspector connection.

  1. Click the Main Camera in the Hierarchy.
  2. In the Inspector, find its Transform and read the three Position numbers (X, Y, Z).
  3. Now click the Directional Light. Notice the Inspector completely changes to show its components instead.
โœ… What you should have seen

The Inspector always shows one selected object at a time. Selecting a new object in the Hierarchy instantly swaps the Inspector's contents. The camera has a Camera component; the light has a Light component โ€” different jobs, different components.

๐ŸŽฏ Quick Quiz

Question 1: Which panel shows a list of every object currently in your scene?

Question 2: You want to see exactly what the player will see. Which view do you look at?

Question 3: You made changes while the game was running (Play mode) and they vanished when you stopped. Why?

Tips & Best Practices

โœ… Do's

  • Reset your layout when lost. Window โ–ธ Layouts โ–ธ Default instantly restores the standard arrangement.
  • Keep the Console visible. It's how Unity talks to you โ€” catching errors early saves hours.
  • Get used to the Scene/Game tabs. Glance at which one is active before you panic that "nothing works."

โŒ Don'ts

  • Don't do careful work in Play mode. Remember: it resets on Stop.
  • Don't worry about memorizing components yet. We unpack them properly in Module 2.
  • Don't fight the layout. You can drag panels around later; for now the default is perfect for learning.

๐Ÿ’ก Pro Tips

  • Hover over almost any field or button and Unity shows a tooltip explaining it.
  • You can double-click an object in the Hierarchy to instantly frame it in the Scene view.
  • Panels are tabs โ€” drag a tab out to float it, or onto another to dock it. Handy on big monitors.

Summary

๐ŸŽ‰ Key Takeaways

  • The Editor has six main areas: Toolbar, Hierarchy, Scene/Game, Inspector, Project, Console.
  • Scene view is your workbench; Game view is the player's view.
  • Select in the Hierarchy โ†’ edit in the Inspector. Objects are made of components.
  • Play runs the game; changes made during Play are discarded on Stop.

๐Ÿ“š Go Deeper (optional)

๐Ÿš€ What's Next?

Now that you can find your way around, it's time to make something. In Lesson 1.4 you'll create a brand-new scene from scratch, add your first object, and save your work.

๐ŸŽ‰ Nicely done!

The Editor used to look like a cockpit โ€” now it's a workshop you recognize. That's a real milestone.