Hello,
Every time I make a new geo node, I had to add VRay object properties manually from pull down menu (V-Ray) on the top of the screen. .
Is there a way that I can add it automatically?
Or does anyone know how to add that in python?
Thank you
> Is there a way that I can add it automatically?
Check the part with HOUDINIPATH/scripts/category/nodename_event.py: Python script locations
> Or does anyone know how to add that in python?
from vfh import vfh_object_properties
vfh_object_properties.addVRayObjectProperties(node)
Thank you so much!