0
0
Unityframework~5 mins

NavMesh baking in Unity - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
ATo create a map of walkable areas for AI navigation
BTo bake textures onto 3D models
CTo optimize lighting in the scene
DTo generate particle effects
Which component do you add to a GameObject to define the NavMesh baking area?
AMeshRenderer
BNavMeshAgent
CNavMeshSurface
DCollider
What does setting an object as 'Navigation Static' do?
AMakes it invisible to the camera
BMarks it as unmovable for NavMesh calculations
CDisables physics on the object
DAllows the object to move during gameplay
If the Agent Radius is too small, what might happen?
AThe agent will move faster
BThe agent will jump higher
CThe agent will ignore the NavMesh
DThe agent may get too close to obstacles and get stuck
What is the effect of baking a NavMesh without marking obstacles as static?
AAI agents may walk through obstacles
BThe NavMesh will be smaller
CThe scene will render slower
DThe NavMesh will be invisible
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.