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 335663d commit a0a3e99Copy full SHA for a0a3e99
Packages/Integrations/Autodesk/maya/scripts/unityCommands.mel
@@ -396,7 +396,16 @@ proc importFile(string $filePathStr){
396
storeAttribute($unityExportSet, $UnityFbxFileNameAttr, "");
397
storeAttribute($unityExportSet, $UnityFbxNamespaceAttr, "");
398
}
399
+ else
400
+ {
401
+ // Update animation only
402
+ FBXImportMode -v exmerge;
403
404
+ // Don’t change the static values on the cameras and lights
405
+ FBXImportCameras -v false;
406
+ FBXImportLights -v false;
407
+ }
408
+
409
if(`namespaceInfo -cur -an` != $targetNamespace){
410
namespace -set $targetNamespace;
411
0 commit comments