LoginSignup
5
5

More than 5 years have passed since last update.

Maya | ネームスペースを全て削除する

Last updated at Posted at 2017-12-05

図のようにネームスペースがたくさんあるときに、全てのネームスペースを簡単に削除できます。
無題.png

import maya.cmds as cmds

cmds.namespace(setNamespace=':')

for ns in reversed(cmds.namespaceInfo(listOnlyNamespaces=True, recurse=True)):
    if ns != 'UI' and ns != 'shared':
        cmds.namespace(moveNamespace=(ns, ':'), force=True)
        cmds.namespace(removeNamespace=ns)
5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5