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 efd614f commit 7736c4aCopy full SHA for 7736c4a
Assets/FbxExporters/Editor/FbxExportSettings.cs
@@ -762,8 +762,7 @@ public static void SetRelativeSavePath(string newPath) {
762
public static string GetIntegrationSavePath()
763
{
764
//If the save path gets messed up and ends up not being valid, just use the project folder as the default
765
- if (instance.IntegrationSavePath == null ||
766
- string.IsNullOrEmpty(instance.IntegrationSavePath.Trim()) ||
+ if (string.IsNullOrEmpty(instance.IntegrationSavePath) ||
767
!Directory.Exists(instance.IntegrationSavePath))
768
769
//The project folder, above the asset folder
0 commit comments