
AndrewVK
AndrewVK
About Me
Expertise
Not Specified
Location
Not Specified
Website
Connect
Recent Forum Posts
Houdini Camera Export to Unreal Engine Nov. 15, 2017, 5:39 a.m.
Thanks for detailed explanation!
BTW is there any solution for “import camera from UE to houdini”?
BTW is there any solution for “import camera from UE to houdini”?
Houdini To After Effects in archive (python script) June 14, 2017, 4:32 a.m.
It works with an animated “focal” parameter, but does not take into account animated “aperture”
To fix this, find the line:
if (objType == ‘cam’) and (len(obj.parm('focal').keyframes()) != 0):
and replace with:
if (objType == ‘cam’) and (len(obj.parm('focal').keyframes()) != 0) or (len(obj.parm('aperture').keyframes()) != 0):
To fix this, find the line:
if (objType == ‘cam’) and (len(obj.parm('focal').keyframes()) != 0):
and replace with:
if (objType == ‘cam’) and (len(obj.parm('focal').keyframes()) != 0) or (len(obj.parm('aperture').keyframes()) != 0):
How do you select edge group to polyextrude the flattened mesh within flattank_fluidinterior (Houdini 16 Masterclass-Ocean Tools) March 21, 2017, 1:24 a.m.
Do you convert geometry from “poly soup” to “polygon” before extrude?