This script works well in H16.5, but not in H17:
sop = node.createOutputNode('polyesxtrude::2.0') sop.setParms(... sop.setDisplayFlag(True) sop.setHighlightFlag(True) sop.setCurrent(True, True) viewer.enterCurrentNodeState()
But this works normally in H17:
import soptoolutils soptoolutils.customStateTool({}, 'polyextrude::2.0')
Why this happens? How to make first script work in H17? Thanks.