Force Rhino plugin loading at startup

Hi guys!
I’ve noticed that Rhino uses a kind of “lazy loading” approach when it comes to plug-ins loading: it seems that a plug-in is not loaded until one of its commands is executed or until one of its panels is shown.
I wonder if there’s a way to tell Rhino to load a plug-in as soon as possible, when it starts.
Thanks

Override LoadTime on your plug-in and return PlugInLoadTime.AtStartup.

Here is how Raytraced loads itself at startup (unless load-protected):

1 Like

Thanks a lot, @nathanletwory!
It works like a charm! :slight_smile: