I wrote a method and attached it to the Exited Link event of my HyperText object through an empty Game Object, however my cursor exiting the hypertext link does not call the method.
Here is the method:
public void OnMouseExitHypertext(HyperText sender, HyperText.LinkInfo link) {
Debug.Log("hello");
}
Any ideas on why this might be?