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 ba766d3 commit 6a2bd09Copy full SHA for 6a2bd09
Assets/FbxExporters/Editor/FbxExportSettings.cs
@@ -320,13 +320,14 @@ public static string[] DCCVendorLocations {
320
{
321
case RuntimePlatform.WindowsEditor:
322
locationsList.AddRange(new string[] { "C:/Program Files/Autodesk", "D:/Program Files/Autodesk" });
323
- return locationsList.ToArray();
+ break;
324
case RuntimePlatform.OSXEditor:
325
locationsList.AddRange(new string[] { "/Applications/Autodesk" });
326
327
default:
328
throw new NotImplementedException();
329
}
330
+ return locationsList.ToArray();
331
332
333
0 commit comments