Skip to content

Commit 80e62b2

Browse files
committed
use getter to retrieve value
1 parent f26c90f commit 80e62b2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Assets/FbxExporters/Editor/InstallIntegration.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,13 @@ class IntegrationsUI
505505
{
506506
const string IntegrationZipPath = "FbxExporters/unityoneclick_for_maya.zip";
507507

508-
private static string DefaultIntegrationSavePath = Application.dataPath;
508+
private static string DefaultIntegrationSavePath
509+
{
510+
get{
511+
return Application.dataPath;
512+
}
513+
}
514+
509515
private static string LastIntegrationSavePath = DefaultIntegrationSavePath;
510516

511517
public static void InstallMayaIntegration ()

0 commit comments

Comments
 (0)