0
0
Unityframework~5 mins

NavMesh Agent component in Unity - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the primary purpose of the NavMesh Agent component in Unity?
The NavMesh Agent component allows a GameObject to navigate a scene by following a path on a NavMesh, enabling automatic movement and obstacle avoidance.
Click to reveal answer
beginner
Which Unity system must be set up before using a NavMesh Agent?
A NavMesh must be baked in the scene. This is a navigation mesh that defines walkable surfaces for the agent.
Click to reveal answer
beginner
How do you make a NavMesh Agent move to a specific position in code?
Use the method agent.SetDestination(targetPosition); where agent is the NavMesh Agent component and targetPosition is a Vector3 coordinate.
Click to reveal answer
beginner
What property of NavMesh Agent controls how fast the agent moves?
The speed property controls the movement speed of the NavMesh Agent.
Click to reveal answer
intermediate
How does the NavMesh Agent avoid obstacles while moving?
The NavMesh Agent uses the NavMesh's data and built-in obstacle avoidance algorithms to find paths around obstacles automatically.
Click to reveal answer
What must be created in a Unity scene before a NavMesh Agent can navigate?
AA Collider component
BA Rigidbody component
CA Particle System
DA NavMesh baked on the scene
Which method moves a NavMesh Agent to a target position?
Aagent.MoveTo(targetPosition)
Bagent.SetDestination(targetPosition)
Cagent.Navigate(targetPosition)
Dagent.GoTo(targetPosition)
What property controls how fast a NavMesh Agent moves?
Aspeed
Bvelocity
Cacceleration
Dmass
How does a NavMesh Agent handle obstacles in its path?
AIt automatically finds a path around them
BIt ignores obstacles
CIt jumps over obstacles
DIt stops immediately
Which Unity component is required on a GameObject to use NavMesh Agent features?
AAudio Source component
BAnimator component
CNavMesh Agent component
DLight component
Explain how to set up and use a NavMesh Agent to move a character to a point in Unity.
Think about the steps from scene preparation to code control.
You got /4 concepts.
    Describe how the NavMesh Agent component helps with obstacle avoidance during navigation.
    Focus on how the agent moves safely in the environment.
    You got /4 concepts.