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 614556d commit 632f984Copy full SHA for 632f984
Assets/FbxExporters/Editor/FbxExportSettings.cs
@@ -731,7 +731,8 @@ public static void SetRelativeSavePath(string newPath) {
731
732
public static string GetIntegrationSavePath()
733
{
734
- if (!instance.IntegrationSavePath.Contains("/"))
+ //If the save path gets messed up and ends up not being valid, just use the project folder as the default
735
+ if (instance.IntegrationSavePath.Trim() == "")
736
737
//The project folder, above the asset folder
738
Directory.GetCurrentDirectory().ToString();
0 commit comments