Targeted.cs
The following is a script I wrote while an AI programmer for the project Ylva's tale. I found myself frequently writing the same code, to find the distance to the player and to check if I could see the player. My solution to this problem was to create a new script, Targeted.cs, which keeps track of that information in the way I was accessing it the most- through the animator.
Next I was trying to handle an enemy that needed to change targets because sometimes it looks at the player and sometimes at a piece of the set. The problem with this is that all my other scripts still think that they are looking at the old target. My solution to this is to send an event when the target is changed. This allows other scripts to listen in and act on that information without having to check very frequently.