Skip to content

Fixed 3Delight ROP Node input and output behaviour. Fixes #339.

Ogers Ruda requested to merge rop_node_input_connection_fix into master

Although maxInputs() maxOutputs() functions had been overriden to return the proper value, on rop_node creation these values where set to 0, thus creating a wrong behaviour when trying to connects ROPs. Also you could notice from ROP node parameters that the max input and max output values were 0 even why we had set them on the overrided functions mentioned above. Also removed getNumVisibleInputs() function because this was only used by VOPs and DOPs. All other OPs return maxInputs() for this, so we do not need to override it.

Merge request reports