Houdini 20.5
: Use the new cop nodes (Copernicus network) for imagesequence
product
#182
Open
1 task done
Is there an existing issue for this?
Please describe the feature you have in mind and explain what the current shortcomings are?
imagesequence
product in Houdini20.5
should use the new cop nodes (Copernicus network)while in
19.5
it should use the old cop nodes.Currently, publishing
imagesequence
product in Houdini20.5
doesn't work.some testing in Houdini 20.5
Currently, this validator ValidateCopOutputNode fails because the logic conflicts:
not isinstance(output_node, hou.CopNode)
is true for the new cop nodes and false for the old cop nodesoutput_node.type().category().name() != "Cop2"
is false for the new cop nodes and true for the old cop nodesMore info
In Houdini
19.5
,hou.CopNode
is a Cop/Composition node in image network.In Houdini
20.5
,hou.CopNode
is a Cop node in a Copernicus network while the old cop nodes that live inside an image network becamehou.Cop2Node
This is somehow makes us support the new Copernicus network out of the box because we are mostly using
hou.CopNode
along the code.Some screenshots to tell them apart.
Suggested implementation?
The whole logic should be revised to ensure that it works in both cases
19.5
and20.5
.Describe alternatives you've considered:
No response
The text was updated successfully, but these errors were encountered: