Nicolas Evain

nilth

About Me

EXPERTISE
VFX Artist
INDUSTRY
Film/TV

Connect

LOCATION
United States
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Forced Matte Objects in image planes June 5, 2017, 11:42 p.m.

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 May 4, 2017, 9:31 p.m.

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)