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 7e0f604 commit 465ef8dCopy full SHA for 465ef8d
Assets/FbxExporters/Editor/ReviewLastSavedModel.cs
@@ -12,6 +12,8 @@ class TurnTable
12
const string ScenesPath = "Assets";
13
const string SceneName = "FbxExporters_TurnTableReview";
14
15
+ public const string TempSavePath = "_safe_to_delete";
16
+
17
static string LastFilePath = null;
18
static Object LastModel = null;
19
@@ -50,7 +52,7 @@ private static string GetSceneFilePath ()
50
52
51
53
private static string GetLastSavedFilePath ()
54
{
- string modelPath = Application.dataPath + "/_safe_to_delete";
55
+ string modelPath = Application.dataPath + "/" + TempSavePath;
56
System.IO.FileInfo fileInfo = GetLastSavedFile (modelPath);
57
58
return (fileInfo != null) ? fileInfo.FullName : null;
0 commit comments