Last active
March 25, 2021 03:59
-
-
Save marvolo3d/bdd2c02758945583af9daf0125ce8618 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import maya.cmds as cmds | |
sel = cmds.ls(sl=1, l=True) | |
for x in sel: | |
cmds.select(x, r=True) | |
try: | |
cmds.addAttr( shortName='radius', longName='radius', defaultValue=0) | |
except: | |
pass | |
cmds.select(sel, r=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment