miles vignol
milesvignol
About Me
Connect
LOCATION
Not Specified
ウェブサイト
Houdini Engine
Availability
Not Specified
Recent Forum Posts
How to put the Enviroment Light samples into the indirect 2015年10月15日14:14
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 2015年10月12日13:07
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? 2015年10月12日13:03
in a point wrangle:
if (f@burned>0)
removepoint(0,i@ptnum);
if (f@burned>0)
removepoint(0,i@ptnum);