How to save and Load components. Help!
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.
Comment
Answer by Bjb5656 · Dec 13, 2016 at 05:34 AM
I found a way but it's slow and not secure.
Save
PlayerPrefs.SetString("Name", Gameobject.name);
Load
GameObject = GameObject.Find(PlayerPrefs.GetString("Name"));
Your answer
Follow this Question
Related Questions
Saving gameObjects state on load 0 Answers
Saving all prefab positions in one JSON file 0 Answers
How to save and load a player position, health, rotation in a particular scene. 0 Answers
Keep GameObjects After Re Run? 1 Answer
How should I save entity's data that have different variables to store? 0 Answers