0
0
Unityframework~5 mins

Enemy patrol and chase patterns in Unity - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
AMoving sequentially between waypoints
BRandomly teleporting around the map
CStanding still and waiting
DFollowing the player constantly
What triggers an enemy to switch from patrol to chase mode?
AEnemy running out of health
BPlayer entering detection range
CEnemy reaching a waypoint
DTime of day changes
Which Unity component helps enemies find paths around obstacles?
ACollider
BRigidbody
CAnimator
DNavMeshAgent
Why should enemy movement between patrol and chase be smooth?
ATo make enemy behavior look natural
BTo confuse the player
CTo save CPU resources
DTo make the enemy invisible
What data structure is best for storing patrol points?
ABoolean flag
BSingle integer
CArray or list of positions
DString
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.