Recall & Review
beginner
What is NavMesh baking in Unity?
NavMesh baking is the process of creating a navigation mesh that defines walkable areas for AI agents in a game scene. It helps characters find paths around obstacles.
Click to reveal answer
beginner
Which Unity component is required to bake a NavMesh?
The component required is the NavMeshSurface. It marks the area where the NavMesh will be generated.
Click to reveal answer
intermediate
What does the 'Agent Radius' setting affect during NavMesh baking?
Agent Radius defines how close the AI agent can get to obstacles. A larger radius means the agent keeps more distance from walls and objects.
Click to reveal answer
beginner
Why should you mark static objects as 'Navigation Static' before baking?
Marking objects as 'Navigation Static' tells Unity these objects won't move, so they are included in the NavMesh calculation to block or allow paths correctly.
Click to reveal answer
intermediate
What happens if you bake a NavMesh without any obstacles marked as static?
The NavMesh will treat the scene as fully walkable, ignoring obstacles, so AI agents may walk through walls or objects.
Click to reveal answer
What is the main purpose of NavMesh baking in Unity?
✗ Incorrect
NavMesh baking creates a navigation mesh that AI agents use to find paths around obstacles.
Which component do you add to a GameObject to define the NavMesh baking area?
✗ Incorrect
NavMeshSurface defines the area where the NavMesh will be baked.
What does setting an object as 'Navigation Static' do?
✗ Incorrect
Navigation Static means the object won't move and is included in NavMesh baking.
If the Agent Radius is too small, what might happen?
✗ Incorrect
A small radius can cause the agent to try to squeeze through tight spaces and get stuck.
What is the effect of baking a NavMesh without marking obstacles as static?
✗ Incorrect
Without static obstacles, the NavMesh treats the whole area as walkable.
Explain the steps to bake a NavMesh in Unity for a simple scene.
Think about preparing the scene and then generating the navigation data.
You got /4 concepts.
Describe how the Agent Radius setting influences AI movement on a NavMesh.
Consider how the agent's size affects its path.
You got /3 concepts.