Log into your account to keep track of your progress. You can work through the lessons without logging in but your progress will be lost when you refresh the page.

 In this video, i'll be sharing the knowledge of how to creates nodes faster in Houdini via shelf script. You can write me on the discord server for any help.


The Mighty Code : 


sel = hou.selectedNodes()

if sel:

  node = hou.selectedNodes()[0]

  if node.type().category() == hou.sopNodeTypeCategory():

    parent = node.parent()

    wrangle = parent.createNode("xform")

    wrangle.setNextInput(node)

    wrangle.moveToGoodPosition(True, False, True, True) 

    wrangle.setSelected(True, True, False)  

    wrangle.setDisplayFlag(True)

    wrangle.setRenderFlag(True)

COMMENTS

  • There are currently no comments

Please log in to leave a comment.