ikarus Posted June 17, 2011 Share Posted June 17, 2011 Is there a way to make parameters invisible using python? It seems you can only lock/disable them, it would be useful in tool-building to be able to have a parm "visibility" setting imo Quote Link to comment Share on other sites More sharing options...
sho Posted June 17, 2011 Share Posted June 17, 2011 Yes, you can do that using parmTemplateGroup. Something like, ptg = hou.Node.parmTemplateGroup() p = ptg.find('foo') p.hide(True) ptg.replace('foo',p) hou.Node.setParmTemplateGroup(ptg) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.