Nicolas Evain

nilth

About Me

専門知識
VFX Artist
業界:
Film/TV

Connect

LOCATION
United States
ウェブサイト

Houdini Engine

Availability

Not Specified

Recent Forum Posts

Forced Matte Objects in image planes 2017年6月5日23:42

Did you take a look at the personnal extra image plane? You can add one and set Pz as vex variable and Float for the type or select it in the combobox. And set the Sample Filter on Full Opacity Filtering. It seems that the matte objects are removed from the render.

python Multi-line String 2017年5月4日21:31

For everyone who find this old topic (like me), to create a multiline string parameter. You have to modify the key “editor” value to 1.

import hou
node = hou.node('/obj').createNode('geo')
group = node.parmTemplateGroup()
folder = hou.FolderParmTemplate('folder', 'My Parms')
template = hou.StringParmTemplate('myparm', 'My Parm',1)
template.setTags({"editor": "1"}) #it's "0" by default
folder.addParmTemplate(template)
group.append(folder)
node.setParmTemplateGroup(group)