Either this is broken or I'm doing something wrong.
If I create a Vrayclipper and assign a mesh to it as source with replaceOnPick:true
it will not only delete the sourceObject, but it won't even clip when rendering.
only when I manually select the source object by pressing the pick source button in the modifypanel will it use the source object while removing it
and work as expected when rendering.
below is the simplified code I'm using
anyone else seeing the same behaviour ?
If I create a Vrayclipper and assign a mesh to it as source with replaceOnPick:true
it will not only delete the sourceObject, but it won't even clip when rendering.
only when I manually select the source object by pressing the pick source button in the modifypanel will it use the source object while removing it
and work as expected when rendering.
below is the simplified code I'm using
Code:
function SectionItems = ( local clipSrc = convertToPoly (box()) local clipObj = vrayClipper mesh_mode:true mesh_replaceOnPick:true mesh_source:clipSrc ) sectionItems()
Comment