- What's a Unity prefab?
- A reusable GameObject template stored as a .prefab YAML file. Drop the file in the tool to see its component structure without opening Unity.
- Why inspect prefabs outside Unity?
- Code review, merge conflict resolution, scripting automated checks (no missing scripts, consistent layer assignments). Useful in CI.
- Does it modify prefabs?
- Read-only. For modifications open in Unity — direct YAML editing of prefabs is fragile and often breaks.
- What about nested prefabs?
- Shown in-tree. References to other prefabs are highlighted; you'll need to inspect those separately.