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 f105149 commit 71f4fb5Copy full SHA for 71f4fb5
Assets/FbxExporters/Editor/FbxExportSettings.cs
@@ -725,7 +725,7 @@ public static void SetRelativeSavePath(string newPath) {
725
public static string GetIntegrationSavePath()
726
{
727
//If the save path gets messed up and ends up not being valid, just use the project folder as the default
728
- if (string.IsNullOrEmpty(instance.IntegrationSavePath.Trim()))
+ if (string.IsNullOrEmpty(instance.IntegrationSavePath.Trim()) && Directory.Exists(instance.IntegrationSavePath))
729
730
//The project folder, above the asset folder
731
Directory.GetCurrentDirectory().ToString();
0 commit comments