Page 1 of 1

Can't start ES3 on Unity 2019.3

Posted: Sun Feb 23, 2020 10:11 pm
by nFighter
Hey! I'm importing fresh ES3 to the Unity 2019.3 project and willing to start from disabling "auto add manager to scene" and "autoupdate reference". Unfortunately, I can't. Every time I open Easy Save manager on a Settings tab it falls to some kind of endless cycle. My editor almost stop responding to clicks, and every time I manage to click on a checkbox it drops error

Code: Select all

ArgumentNullException: Value cannot be null.
Parameter name: target
ES3Editor.SettingsWindow.OnGUI () (at Assets/Plugins/Easy Save 3/Editor/SettingsWindow.cs:73)
ES3Editor.ES3Window.OnGUI () (at Assets/Plugins/Easy Save 3/Editor/ES3Window.cs:101)
I can't delete the manager cos it immediately auto appear back and I can't disable it settings :(

Re: Can't start ES3 on Unity 2019.3

Posted: Mon Feb 24, 2020 7:47 am
by Joel
Hi there,

We're currently waiting for Unity to approve our 2019.3 update. However, I'll PM you this update in advance.

All the best,
Joel

Re: Can't start ES3 on Unity 2019.3

Posted: Tue Feb 25, 2020 1:59 am
by nFighter
Oh, so you aware of the issues, great! Don't worry, I'll wait for the official release then :geek:

Re: Can't start ES3 on Unity 2019.3

Posted: Thu Feb 27, 2020 12:08 pm
by qinjie
nFighter wrote:Oh, so you aware of the issues, great! Don't worry, I'll wait for the official release then :geek:
Open SettingsWindow.cs in your project, find Init() function and remove this line:

//PrefabUtility.SavePrefabAsset(defaultSettingsGo);

It should be solved.

Re: Can't start ES3 on Unity 2019.3

Posted: Sun Mar 01, 2020 1:55 am
by nFighter
qinjie wrote:
nFighter wrote:Oh, so you aware of the issues, great! Don't worry, I'll wait for the official release then :geek:
Open SettingsWindow.cs in your project, find Init() function and remove this line:
//PrefabUtility.SavePrefabAsset(defaultSettingsGo);
It should be solved.
Awesome! Thank you <3