Created
May 26, 2017 06:09
-
-
Save yamahigashi/439733db11cd8ace411a8da4b52d62e3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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.mel as mel | |
| import maya.cmds as cmds | |
| import_command = "DoraSkinWeightImport( \"{name}.dsw\", $gDoraSkinWeightImpExp_ImpMode, 0, 1, 0.001)" | |
| all = [x for x in cmds.ls(sl=True)] | |
| for x in all: | |
| cmds.select(x) | |
| mel.eval(import_command.format(name=x)) | |
| cmds.select(all) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment