FIXED: Parameters are not created on Custom Operators when using minInputs different that zero

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;
}

noParam

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

  • 1 Same problem here

Same problem here. Following.

This will be fixed in build 2020.25650 and later. Thanks for the report and sorry for the delay in fixing it.

Awesome thanks a lot