Search the Community
Showing results for tags 'hide'.
-
Hey magicians, I'm creating a setup to make vehicles, where you have different options for each part: - For example to create the main base body, you can 1) use noise / 2) use a spline / 3) use a box So far I have been using switch and sliders, but is getting more complex and I would like to do it the proper way, so anytime I pick a mode on dropdown (instead of slider), then the correct submenu appears. Made an image to explain: And here's a quick gif with the options: Any tutorial suggestions for this, or tips on better organization, will be super useful. Thanks in advance Cheers!
-
Hi, Is there a way to hide the contents of my subnet, I want to submit my sim on a remote machine and I do not want its contents to be exposed, is there any way to do this? Thanks
-
Hello, I'd like to include a 'hide/disable when' conditional on a parameter which is being created by a script. How do I do this? null = hou.node("/obj").createNode("null") null.setName('newNull') tabs = null.parmTemplateGroup() for folder in tabs.entries(): tabs.hideFolder(str(folder.label()), True) null.setParmTemplateGroup(tabs) parmGroup = null.parmTemplateGroup() parmGroup.addParmTemplate(hou.ToggleParmTemplate("overrideToggle", "Override Cache Version", 1)) parmGroup.addParmTemplate(hou.IntParmTemplate("overridingVersion", "Overriding Version", 1)) null.setParmTemplateGroup(parmGroup) null.parm('overrideToggle').set(0) null.parm('overridingVersion').disable(1)