Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hey all,
I'm trying to disable autoload on all my plugins in a userSetup.py file. Loading/Unloading plugins works fine. It's just setting autoload to false that doesn't seem to work. Am I missing something? It might be worth mentioning that I'm running Maya on macOS.
I'm running:
from maya import cmds
# Force Auto load all plugins to False
pluginList = cmds.pluginInfo(query=True, listPlugins=True) or []
for plugin in pluginList:
cmds.pluginInfo(plugin, edit=True, autoload=False)
Thanks in advance,
Evelyn
Solved! Go to Solution.