Recall & Review
beginner
What is the purpose of an enemy patrol pattern in a game?
An enemy patrol pattern makes the enemy move along a set path or area to simulate guarding or searching behavior before spotting the player.
Click to reveal answer
beginner
How does an enemy typically detect the player to start chasing?
The enemy uses a detection method like checking distance, line of sight, or a trigger zone to know when the player is close enough to chase.
Click to reveal answer
intermediate
What is a common way to implement patrol points in Unity?
Use an array or list of Vector3 positions that the enemy moves between in order, looping back to the start when finished.
Click to reveal answer
intermediate
Why is it important to smoothly transition between patrol and chase states?
Smooth transitions avoid sudden, unrealistic enemy movements and improve game feel by making enemy behavior believable.
Click to reveal answer
beginner
What Unity component can help with enemy movement during patrol and chase?
The NavMeshAgent component helps enemies navigate the environment by automatically finding paths and avoiding obstacles.
Click to reveal answer
Which method is commonly used to make an enemy patrol between points?
✗ Incorrect
Enemies usually move between set waypoints in order to patrol an area.
What triggers an enemy to switch from patrol to chase mode?
✗ Incorrect
The enemy starts chasing when the player is detected within a certain range or line of sight.
Which Unity component helps enemies find paths around obstacles?
✗ Incorrect
NavMeshAgent automatically calculates paths and avoids obstacles for smooth movement.
Why should enemy movement between patrol and chase be smooth?
✗ Incorrect
Smooth transitions make the enemy's actions believable and improve player experience.
What data structure is best for storing patrol points?
✗ Incorrect
An array or list holds multiple positions for the enemy to move between.
Explain how you would implement an enemy patrol and chase system in Unity.
Think about how the enemy moves and when it changes behavior.
You got /4 concepts.
Describe why smooth transitions between patrol and chase states improve gameplay.
Consider how the player perceives enemy actions.
You got /4 concepts.