create subfolder for standalone

This commit is contained in:
Sinai
2021-03-11 18:40:04 +11:00
parent 7a8b5b50d1
commit 21408993c2
2 changed files with 11 additions and 5 deletions

View File

@ -82,9 +82,9 @@ namespace UnityExplorer
SceneManager.add_sceneLoaded(new Action<Scene, LoadSceneMode>((Scene a, LoadSceneMode b) => { OnSceneLoaded(); }));
SceneManager.add_activeSceneChanged(new Action<Scene, Scene>((Scene a, Scene b) => { OnSceneLoaded(); }));
}
catch (Exception ex)
catch
{
LogWarning($"Exception setting up Unity event listeners!\r\n{ex}");
// exceptions here are non-fatal, just ignore.
}
#else
Application.logMessageReceived += OnUnityLog;