I've got a python script:
o = hou.node('/obj/metaSculpter31')
#p = o.parmTuple('_sculptCurLayer')
p = o.parmTuple('sculpt_layerName1')
parm_template = p.parmTemplate()
parm_template.hide(True)
ui = o.type().definition()
ui.replaceParmTuple(p.name(),parm_template)
And It works with the name ‘_sculptCurLayer’ - it hides parm with this name.
But it doesn't work with parameters, that are stored in blocks of Multiparm block - is it possible to hide/show parameters in multiparm block?
thank you
