Enemy Communication System

Enemies could alert each other when spotting the player. Initially I attempted a constant update check across all enemies, but this was inefficient. I replaced it with Unity’s physics overlap sphere, which collected all nearby AI within a radius and called their listening function, making enemy collaboration smooth and efficient.