Skip to content

Instantly share code, notes, and snippets.

@tomihanayu
Created September 13, 2017 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomihanayu/eebe3b3dfd79649395a04f3070d1a950 to your computer and use it in GitHub Desktop.
Save tomihanayu/eebe3b3dfd79649395a04f3070d1a950 to your computer and use it in GitHub Desktop.
不要なプラグインのrequiresを除去
import maya.cmds as cmds
if cmds.unknownPlugin(q=True,l=True):
for o in cmds.unknownPlugin(q=True,l=True):
cmds.unknownPlugin(o,r=True)
print o
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment