Creating the Patrol state
In the Patrol
state, the enemy should wander the environment and look for the player. This state can be entered from the Idle
state, after the idle animation is completed, and also from the Chase
state, if the enemy loses sight of the player during a chase. Patrol involves a looping logic. Specifically, the enemy should pick a random destination somewhere on the navigation mesh and then travel to that destination. When the destination is reached, the process should repeat and so on. The only condition that causes the enemy to leave this state is a sighting of the player, which demands a Chase
state.
Though simple to explain, this state relies on two more complex issues: first, a random location must be selected and second, ...
Get Mastering Unity Scripting now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.