Untitled

Anonymous
plain_text
10/06/2022 6:26 PM
228 B
18
Indexable
import pymel.core as pm

selected = pm.ls(sl=True)
fo i in selected:
    print i.getshape()
    pm.setAttr('%s.innerRadius'%i,2)
    pm.setAttr('%s.outerRadius'%i,2)
Editor is loading...