miles vignol
milesvignol
About Me
Connect
LOCATION
Not Specified
WEBSITE
Houdini Skills
Availability
Not Specified
Recent Forum Posts
How to put the Enviroment Light samples into the indirect Oct. 15, 2015, 2:14 p.m.
i think you might need to explicitly add an image plane called “indirect_emission”. it's not a “standard” lighting tag that works via the export planes option.
find closest point with pcopen vex Oct. 12, 2015, 1:07 p.m.
fwiw, when you do a pcopen() in vex, the points are ordered from closest to farthest. also, if you simply restrict your pcopen() to a single point, it will be the one that's closest to your search point.
Deleting point based on attribute? Oct. 12, 2015, 1:03 p.m.
in a point wrangle:
if (f@burned>0)
removepoint(0,i@ptnum);
if (f@burned>0)
removepoint(0,i@ptnum);