The Inspector is the Unity Editor panel that shows the selected object’s components and editable fields. It is where students assign SerializeField references, set movement speeds, choose tags, enable Is Trigger, connect prefabs and inspect component settings. (course lab series, see source-csharp-unity-labs)

Many beginner Unity bugs are Inspector bugs rather than code bugs. If a reference is missing, a component is disabled or a tag is wrong, the fix often starts in the Inspector.

Related: unity-inspector-references, serializefield, nullreferenceexception, component