Simple tutorial about events in UnityScript, C# and Boo
Here is a quick tutorial/memo about using events in you scripts. Events are a flexible way to share data across scripts (calling a method with some parameters) without the sender knowing the receiver(s). The idea The idea is to perform action (run a method) in some script whenever some particular…