Is there a way copy component's values to another unity project?

Unity itself become so heavy and entering game mode take over 2-3 minutes,

so I am making complete new project and move whole codes from previous project.

Problem is, for scripts that exist on hierarchy, and its referenced variables,

should I manually all references them all again?

I can’t use copy method [copy component] from previous gameobject to another project.

Then other way? Make prefab and export method also will not work on hierarchy’s referenced gameobject.

You could export the scene and all dependencies as a package. Import the package in the new project. This will likely bring in a bunch of stuff you’re not interested in, so either uncheck boxes for stuff you don’t want to import, or delete all the extras after the fact. Just an idea.

this so unconfortable, i just need to copy values from one component to another between two editor instance. why unity doesn’t allow it?

1 Like

I just wanna copy values to another project, why editor not allow do it.

1 Like