Search the Community
Showing results for tags 'disable'.
-
Hey guys, Is there a simple way to disable some particles from the simulation like i'd do with RBD? I have a set of particles inside a group and I need them to be stopped at same position but still interacting with the other particles. Does it makes sense? The group is animated I tried setting v=0 but it doesnt work as expected. I did another trick inside a sop solver to get the position from the previews frame so it stays static but then I cant use the resample. Im just wondering if theres a a simple way like like an attribute the would make them sleep. Cheers, Alvaro
-
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)