top of page







.jpeg)
Search


Houdini Spider Rig (2018)
#Houdini #python #rigging #spiderrig #animation #asset #project Back in 2018, I created this little guy over a month outside of work. I...
68 views
0 comments


Code snippet: Set display flags for nodes matching name
#houdini #python #rigging #spiderrig Simple snippet for setting display flags. value = hou.pwd().parm("value").eval() def...
17 views
0 comments


Code snippet: Rigging replace chop node names
#houdini #python #rigging def replacePath(old, new): ''' replace path name ''' node = hou.selectedNodes() nodes = [n for n in node if...
16 views
0 comments


Code snippet: Setting multiple attributes based on node names
#Python #houdini #rigging A python script used for quickly setting attributes on nodes for the spider rig. """Desc Gives attributes a...
17 views
0 comments


Code snippet: Rigging Bone renaming
#Python #houdini #rigging A python script used for quickly renaming bone nodes on the spider rig. """Desc Renames the selected node as...
11 views
0 comments


Code snippet: Houdini create curve from shortest path
Given scattered points, build a curve from the shortest path. This was used to create loops on lots of geos to sim for CFX. #Houdini #vex...
229 views
0 comments


Code Snippet: Houdini pythonModule common functions
Hou.phm() functions for simple tasks, such as returning all files matching a regex from a path. This was used for a lookdev OTL, to grab...
16 views
0 comments
Code snippet: Houdini group by class from path regex match
Given a group of items with path names matching the regex pattern r".*var([A-Z]).*", e.g. '/path/pathVarA', '/pathvarB', '/path/varC',...
259 views
0 comments
bottom of page