On 24/11/2014 at 01:39, xxxxxxxx wrote:
Hey
is there a function to get all Types
i like to add a dialog with a combo box to select a object type
Thanks
On 24/11/2014 at 01:39, xxxxxxxx wrote:
Hey
is there a function to get all Types
i like to add a dialog with a combo box to select a object type
Thanks
On 24/11/2014 at 06:05, xxxxxxxx wrote:
Hello
Seems need to make dict with oplist and make res file with cycling in options
On 24/11/2014 at 10:18, xxxxxxxx wrote:
Hello,
to get all plugins of a certain type simply use FilterPluginList():
foundPlugins = c4d.plugins.FilterPluginList(c4d.PLUGINTYPE_OBJECT,True)
for plugin in foundPlugins:
print plugin.GetID()
print plugin.GetName()
best wishes,
Sebastian