Announcement

Collapse
No announcement yet.

Glossy Fresnel mel or python script

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Glossy Fresnel mel or python script

    Is there a mel script for assigning 'Glossy Fresnel' to all (old) shaders?

  • #2
    This?
    Code:
    import pymel.core as pm
    for vrayMtl in pm.ls(type='VRayMtl'):
        vrayMtl.glossyFresnel.set(True)

    Comment


    • #3
      Nice one! Cheers, Dan. Works a treat.

      Comment

      Working...
      X