HelpUrlAttribute doesn't seem to be working
I'm trying to use the HelpUrlAttribute to attach a custom help URL to one of my objects. I'm attaching it like this:
[HelpURL("http://example.com/docs/settings.html")]
public class Settings : ScriptableObject {
...
}
but when I click on the help icon it opens the default URL "http://docs.unity3d.com/Manual/script-Settings.html". I've tried attaching the attribute to the editor class for Settings and in a few other places but nothing changes the URL.
Am I using the attribute incorrectly or is there something else going on here?
Comment
I tried the same thing once with the same result. The documentation uses a local file, not a web one. have you tried that?