top of page
Search
Writer's pictureychen3129

Enable Maya viewport Anti-aliasing

import pymel.core as pm

hdrg = pm.PyNode("hardwareRenderingGlobals")
try:
    hdrg.multiSampleEnable.set(1)
except:
    print("Anti-aliasing failed")
124 views0 comments

Comments


bottom of page