Gary Hanna

GaryHanna

About Me

専門知識
VFX Artist
INDUSTRY
Film/TV

Connect

LOCATION
United States
ウェブサイト

Houdini Skills

Availability

Not Specified

My Tutorials

obj-image Beginner
Circle Topo Asset
obj-image Quick Tips
Make Circle Great Again with findattribvalue
obj-image Intermediate
Hairdini: Procedural Hair Card Kit
obj-image Beginner
Game Friendly Character Rigs
obj-image Intermediate
Hair Cards for Game Meshes

Recent Forum Posts

Procedural Modelers at Zoox 2018年10月10日9:12

Thanks, applied yesterday if you accept contract/remote. I'm developing a city asset system myself for a personal project.

Pose Library Errors 2018年4月15日18:41

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? 2018年4月2日13:36

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!!!