public override Rhino.PlugIns.PlugInLoadTime LoadTime
{
get { return PlugInLoadTime.AtStartup; }
}
protected override Rhino.PlugIns.LoadReturnCode OnLoad(ref string errorMessage)
{
RhinoApp.WriteLine("test");
return Rhino.PlugIns.LoadReturnCode.Success;
}
Currently, I need to automatically execute a piece of logic every time rhino is started, overriding LoadTime, which is not possible with OnLoad
