I need help to be able to save and load components like public gameobject and nav mesh paths. OR if possible to save and load the Scene.
Thanks, Ben.
I found a way but it’s slow and not secure.
Save
PlayerPrefs.SetString(“Name”, Gameobject.name);
Load
GameObject = GameObject.Find(PlayerPrefs.GetString(“Name”));