02-05-2019 02:15 AM
Hi Jiggawax,
I figured it was going to be a lot of work to add a new entry point.
Can you give me an example of how I can loop through the plugins to check to see if one is enabled or not and act on it?
Thanks
Andy
02-05-2019 10:07 AM
The array you want to iterate through is Locals.ModelPluginConfiguration.Plugins.
This will give you the name of the plugin: Locals.ModelPluginConfiguration.Plugins.[Locals.x].Base.SequenceFileName (includes .seq)
And this will give you if it is enabled or not: Locals.ModelPluginConfiguration.Plugins[Locals.x].Base.Enabled
Hope this helps,