Search found 2 matches

by Ryan
Sun May 17, 2020 10:12 am
Forum: General Discussion
Topic: ES3Type_RectTransform NullReferenceException always occurs
Replies: 2
Views: 1160

Re: ES3Type_RectTransform NullReferenceException always occu

update, now the same error is showing up even though I'm not using ES3.Save<GameObject>() the error comes from ES3Type_RectTransform protected override void ReadComponent<T>(ES3Reader reader, object obj) { if (obj.GetType() == typeof(UnityEngine.Transform)) obj = ((Transform)obj).gameObject.AddCompo...
by Ryan
Sun May 17, 2020 10:06 am
Forum: General Discussion
Topic: ES3Type_RectTransform NullReferenceException always occurs
Replies: 2
Views: 1160

ES3Type_RectTransform NullReferenceException always occurs

Hello, My Unity Ver is 2019.3.10f Easy save 3.3.1f2 I save a gameobject with this line of code. ES3.Save<GameObject>("GameObject", GameObject.Find("GameObjectName")); then I load with this line of code. ES3.LoadInto<GameObject>("GameObject", GameObject.Find("GameOb...