I have a project that I am working on and I need to move a gameobject I created from my desktop to my laptop, how can i go about doing this? I have looked at export package under the asset menu but I cannot seem to find the object that i made in the list, am i looking in the right place?
2 Answers
2I assume you’re talking about a gameobject you created in a Scene?
If you just want to work on it from your laptop, the easiest is just copy the whole project over, including the scene.
If you really just want to copy the gameobject over, you need to first create a prefab of the gameobject inside a folder, then make an export package of the folder with the prefab in it. Then you can just copy the export package over and use it in other projects.
Perfect. Thanks.