New to the project?
Follow the onboarding guides in order: New Starter Guide → Project Tour → First Week Checklist.
Project Tour
This page helps you understand how the Unity project is structured.
Key folders
Assets/
Contains all game content:
- Scenes
- Scripts
- Prefabs
- Materials
- UI
Scenes/
Contains playable levels and environments.
Scripts/
Contains gameplay logic written in C#.
Prefabs/
Reusable game objects such as enemies, UI elements, and props.
What to focus on first
As a new starter:
- open a scene from the
Scenesfolder - inspect objects in the hierarchy
- look at attached components
- review simple scripts in
Scripts/
Next steps
Now that you understand the project structure: