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 fae413f + 7736c4a commit f20c664Copy full SHA for f20c664
Assets/FbxExporters/Editor/FbxExportSettings.cs
@@ -786,7 +786,8 @@ public static void SetRelativeSavePath(string newPath) {
786
public static string GetIntegrationSavePath()
787
{
788
//If the save path gets messed up and ends up not being valid, just use the project folder as the default
789
- if (string.IsNullOrEmpty(instance.IntegrationSavePath.Trim()) || !Directory.Exists(instance.IntegrationSavePath))
+ if (string.IsNullOrEmpty(instance.IntegrationSavePath) ||
790
+ !Directory.Exists(instance.IntegrationSavePath))
791
792
//The project folder, above the asset folder
793
instance.IntegrationSavePath = DefaultIntegrationSavePath;
0 commit comments