Gary Hanna
GaryHanna
About Me
EXPERTISE
VFX Artist
INDUSTRY
Film/TV
Houdini Skills
Availability
Not Specified
My Tutorials
Recent Forum Posts
Procedural Modelers at Zoox Oct. 10, 2018, 9:12 a.m.
Thanks, applied yesterday if you accept contract/remote. I'm developing a city asset system myself for a personal project.
Pose Library Errors April 15, 2018, 6:41 p.m.
So anyone know what these errors mean? One is with a stock rig by control MMB dragging to blend the poses. The other is a custom character rig with poses I set up as a test…I can't get custom built poses to input on the timeline, but can on the stock rigs…
Bone Mirroring - automate with Python? April 2, 2018, 1:36 p.m.
goldfarb
you can make a quick shelf tool for this
make a new shelf tool and pop this into the script tab:# get the selection nodes = hou.selectedNodes() for node in nodes: y = node.parm("ry").eval() * -1 z = node.parm("rz").eval() * -1 node.parm("ry").set(y) node.parm("rz").set(z)
this will change the “ry” and “rz” values on any selected node
THANKS!!!