Announcement
Collapse
No announcement yet.
Prepass with BF?
Collapse
X
-
Originally posted by DanielBrew View PostI use this for find all materials using interpolation. It also prints the names of guilty materials and the objects to which it is applied in the listener.
Code:( clearListener() for m in getClassInstances vrayMtl processAllAmins:true do ( if m.reflection_useInterpolation == true do ( format "Material:% Applied to:%\n" m.name (refs.dependentNodes m) m.reflection_useInterpolation = false ) if m.refraction_useInterpolation == true do ( format "Material:% Applied to:%\n" m.name (refs.dependentNodes m) m.refraction_useInterpolation = false ) ) )
Comment
Comment