MetaFusion/Reference/SuperRiggingEditor/scripts/userSetup.py

10 lines
247 B
Python
Raw Normal View History

2025-02-03 22:58:41 +08:00
from maya import cmds, mel, utils
def SuperRiggingInstallations():
if not cmds.about(batch=True):
mel.eval("SGUpdatePlugin;")
mel.eval("SGCreateMenuItem;")
mel.eval("SGEnableJointOrient;")
utils.executeDeferred(SuperRiggingInstallations)