sheep _

sheep

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Sparse smoke object boundary July 22, 2022, 11:11 p.m.

So going inside of the smoke object and modifing the node "set_bounds" like this is the only way I see to close all boundarys, would be nice if someone from sideFX see this and maybe tell the correct way to do it or maybe add it as update for next release

Sparse smoke object boundary Jan. 6, 2022, 12:44 a.m.

Hi

Is is possible to close all boundary or to ask sideFx to please bring back the old boundaries controls in the smoke object vs the sparse smoke object, the Sparse smoke seem to only work in one side at a time, is there any way to just pick all boundary or having that small option of each side separate

Update Parameter label with python July 3, 2021, 9:20 p.m.

Im trying this I found in other post but not seem to work for me when calling with the buttom

def increment():
    node = hou.pwd()
    targetParm = node.parm("targetParm")    
    
    group = node.parmTemplateGroup()
    oldParm = targetParm.parmTemplate()
    newParm = targetParm.parmTemplate()
    newParm.setLabel("my new label")
    group.replace(oldParm, newParm)
    node.setParmTemplateGroup(group)



in the buttom callback im using this

hou.phm().increment()