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 53581a0 commit 70c1380Copy full SHA for 70c1380
Assets/Integrations/Autodesk/max/scripts/UnityFbxForMaxPlugin.ms
@@ -255,7 +255,9 @@ struct UnityExportHelpers (
255
)
256
else(
257
unityProjectPath = getINISetting (GetMAXIniFile()) "Unity" "UnityProject"
258
- exportFileName = getSaveFileName caption:"Export FBX to Unity" filename:(unityProjectPath + "/Assets/") types:"FBX (*.fbx)|*.fbx|"
+ if(unityProjectPath != undefined and unityProjectPath != "") do (
259
+ exportFileName = getSaveFileName caption:"Export FBX to Unity" filename:(unityProjectPath + "/Assets/") types:"FBX (*.fbx)|*.fbx|"
260
+ )
261
262
263
if exportFileName != undefined then (
0 commit comments