mac moment

This commit is contained in:
minenice55 2024-01-15 19:55:53 -05:00 committed by GitHub
parent 18c24b628c
commit 35380b34ec

View file

@ -510,18 +510,14 @@ namespace HeavenStudio
};
#if HEAVENSTUDIO_PROD && !UNITY_EDITOR
string lvpath = Application.dataPath;
if (Application.platform == RuntimePlatform.OSXPlayer)
string lvpath = "";
if (Application.platform != RuntimePlatform.OSXPlayer)
{
lvpath += "/../../Levels/";
}
else
{
lvpath += "/../Levels/";
}
if (!Directory.Exists(lvpath))
{
Directory.CreateDirectory(lvpath);
lvpath = Application.dataPath + "/../Levels/";
if (!Directory.Exists(lvpath))
{
Directory.CreateDirectory(lvpath);
}
}
StandaloneFileBrowser.OpenFilePanelAsync("Open Remix", lvpath, extensions, false, (string[] paths) =>
#else