Hi,
When settings the minimum number of inputs for a custom operator to something else that zero the parameters of the operator are not created
void
FillCHOPPluginInfo(CHOP_PluginInfo *info)
{
....
info->customOPInfo.minInputs = 1;
info->customOPInfo.maxInputs = 1;
}
void
FillCHOPPluginInfo(CHOP_PluginInfo *info)
{
....
info->customOPInfo.minInputs = 0;
info->customOPInfo.maxInputs = 1;
}
It always work when the dll is loaded with a CplusplusCHOP.
Cheers,
Colas