We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fba9544 commit 90a71d3Copy full SHA for 90a71d3
Assets/Integrations/Autodesk/maya2017/scripts/unityOneClick/commands.py
@@ -58,7 +58,10 @@ def loadPlugin(self, plugin):
58
return True
59
60
def loadDependencies(self):
61
- return self.loadPlugin('GamePipeline.mll') and self.loadPlugin('fbxmaya.mll')
+ if maya.cmds.about(macOS=True):
62
+ return self.loadPlugin('GamePipeline.bundle') and self.loadPlugin('fbxmaya.bundle')
63
+ else:
64
+ return self.loadPlugin('GamePipeline.mll') and self.loadPlugin('fbxmaya.mll')
65
66
def loadUnityFbxExportSettings(self):
67
"""
0 commit comments