Skip to content

Instantly share code, notes, and snippets.

@kickbase
Created May 25, 2017 16:46
Show Gist options
  • Save kickbase/2df559e4fc757f0174f721b82bc9ef00 to your computer and use it in GitHub Desktop.
Save kickbase/2df559e4fc757f0174f721b82bc9ef00 to your computer and use it in GitHub Desktop.
[Houdini] [Python] Create geometry node as working area.
if not hou.node('/obj/WORK'):
geo = hou.node('/obj/').createNode('geo', 'WORK')
geo.moveToGoodPosition()
for n in geo.children():
n.destroy()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment