Ferry Taswin
Ferry Taswin
About Me
Connect
LOCATION
Not Specified
ウェブサイト
Houdini Engine
Availability
Not Specified
Recent Forum Posts
Automate putting a list of nodes into a subnetwork in Python 2023年9月4日20:28
hou.copyNodesTo(selectedNodes, subnet_node)
Expression for node evaluation mode display vs render 2015年3月30日17:17
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. )
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 ! 2015年3月21日17:00
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.