Ferry Taswin

Ferry Taswin

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Automate putting a list of nodes into a subnetwork in Python Sept. 4, 2023, 8:28 p.m.

hou.copyNodesTo(selectedNodes, subnet_node)

Expression for node evaluation mode display vs render March 30, 2015, 5:17 p.m.

Drop a switch node
Put this as expression (python) :

hou.isUIAvailable()

Render items will be the first input and display items is the second (obviously render items works on the farm or batch mode, not when rendering with ui. )

Q: - General Python help ! March 21, 2015, 5 p.m.



sel= hou.selectedNodes()

for n,i in enumerate(sel) :
if n>0 :
i.setInput(0, sel, 0)

That's assuming output and input connectors are all index 0

Havent test it in Houdini as I replied from phone. But you got the idea.