Ty Khan

Overview Projects Art Music
GitHub ↪ LinkedIn ↪

Blind Enemy Pathfinding

Unity • C#

Example enemy pathfinding that tracks player using sound and "smell".

The enemy's pathfinding is influenced by the enemy's sense of hearing and smell. If a sound is loud enough to be heard by the enemy, it will navigate towards the source. If the enemy passes through a smell trail, it will follow that trail, but only if the trail is newer than the sound. Likewise, if the enemy passes through another smell trail while following one, it will shift focus to the other smell trail if it is newer. In other words, it will prioritize the freshest sources.

Various player actions emit sound of varying volume. The volume of the sound affects the distance at which the enemy AI is able to detect the sound. Sound-emitting actions include:

Because the AI targets sounds, distractions can be created by throwing objects, luring the AI towards the sound of impact.

The player emits a short "smell trail" - breadcrumbs that the enemy is able to pick up on when within a short distance. Every second, the player drops a breadcrumb that dissipates after a few seconds. Certain actions can affect the strength of the breadcrumbs as well as the rate of dissipation; walking through a dust cloud will cause the player to stink, making their breadcrumbs last longer and have a larger detection range, and waking through water will clean the player and reset the strength and duration of their breadcrumbs.

This project was created using Unity 2022.3.22f1. The source code is available on GitHub under the MIT license.