mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 01:02:29 +02:00
✨ "Update Existing Avatar" now loads last exported fst file
This commit is contained in:
parent
fe4e4b70fd
commit
8d75d88f94
2 changed files with 3 additions and 1 deletions
|
@ -793,6 +793,8 @@ class AvatarExporter : MonoBehaviour
|
|||
File.AppendAllText(exportFstPath, $"materialMap = {{{string.Join(",", matData)}}}");
|
||||
}
|
||||
|
||||
EditorPrefs.SetString("OV_LAST_PROJECT_PATH", exportFstPath);
|
||||
|
||||
/*if (SystemInfo.operatingSystemFamily == OperatingSystemFamily.Windows)
|
||||
{
|
||||
// open File Explorer to the project directory once finished
|
||||
|
@ -1603,7 +1605,7 @@ class ExportProjectWindow : EditorWindow
|
|||
avatarPreviewObject = avatarObject;
|
||||
titleContent.text = updateExistingAvatar ? "Update Existing Avatar" : "Export New Avatar";
|
||||
initialProjectLocation = initialPath;
|
||||
projectLocation = updateExistingAvatar ? "" : initialProjectLocation;
|
||||
projectLocation = updateExistingAvatar ? (EditorPrefs.HasKey("OV_LAST_PROJECT_PATH") ? EditorPrefs.GetString("OV_LAST_PROJECT_PATH") : "") : initialProjectLocation;
|
||||
warningText = warnings;
|
||||
onExportCallback = exportCallback;
|
||||
onCloseCallback = closeCallback;
|
||||
|
|
Binary file not shown.
Loading…
Reference in a new issue