← Index
Source: archive/unity/README.md (auto-generated by scripts/generate-docs-html.mjs — edit the .md, not this file)

Unity Study Notes

Learning notes from the Unity Essentials pathway on Unity Learn. Unity version: 6.3 (6000.4.3f1).

Projects in this folder

Folder What it is
essential-pathway/ The Unity Essentials pathway project (Editor Essentials mission)
scene-view/ Scratch project for practicing Scene view navigation

Both are full Unity projects. The Library/, Temp/, and Logs/ folders are local caches generated by the Editor — only Assets/, ProjectSettings/, and Packages/ define the project.


Pathway: Unity Essentials

The pathway is organized into missions, each containing tutorials:


What I studied: Scene view navigation

The core skill of moving confidently around 3D space in the Scene view. Two complementary techniques:

1. Frame, Orbit, Zoom

Quickly focus on any GameObject from any angle:

Action Input
Frame the selected object Press F (or double-click it in the Hierarchy)
Orbit around it Hold Alt / Option + left-click and drag
Zoom in/out Scroll wheel or trackpad

The flying test: activate the Rings GameObject, frame Ring_1, then repeatedly Frame → Orbit → Zoom through each ring of the course.

2. Flythrough mode

Free-fly anywhere in the scene, like a first-person camera:

Action Input
Enter Flythrough mode Hold right-click
Move W A S D
Down / Up Q / E

In practice you mix both: Flythrough to travel across the scene, Frame/Orbit/Zoom to inspect a specific object.

Hierarchy & Inspector basics picked up along the way


Key takeaways