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.
2 parents 680acb7 + f0139d0 commit 3a11e8cCopy full SHA for 3a11e8c
Assets/Integrations/Autodesk/maya2017/scripts/unityOneClick/commands.py
@@ -295,7 +295,12 @@ def doIt(self, args):
295
296
if not self.loadUnityFbxExportSettings():
297
return
298
-
+
299
+ # select the export set for export, if it exists,
300
+ # otherwise take what is currently selected
301
+ if self.setExists(self._exportSet):
302
+ maya.cmds.select(self._exportSet, r=True, ne=True)
303
304
unity_fbx_file_path = self.getAttribute(self._exportSet, self._unityFbxFilePathAttr)
305
unity_fbx_file_name = self.getAttribute(self._exportSet, self._unityFbxFileNameAttr)
306
0 commit comments