Skip to content

Commit acef119

Browse files
authored
Merge pull request #460 from Unity-Technologies/UT-1846-fix-duplicate-dccs-in-integration-dropdown
UT-1846 fix duplicate dccs in integration dropdown
2 parents 9182e70 + f93faa5 commit acef119

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

com.unity.formats.fbx/Editor/FbxExportSettings.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ private static string GetMayaLocationFromEnvironmentVariable(string env)
346346
}
347347
}
348348
}
349-
return result;
349+
return NormalizePath(result, false);
350350
}
351351

352352
/// <summary>
@@ -367,7 +367,7 @@ private static HashSet<string> GetCustomVendorLocations()
367367
{
368368
if (Directory.Exists(location))
369369
{
370-
result.Add(location);
370+
result.Add(NormalizePath(location, false));
371371
}
372372
}
373373
}

0 commit comments

Comments
 (0)