Sometimes I want to make a script that would be shared to every project I created (helper class or extend editor) I want to make it copying every times I create project or just sharing as global asset or something
Did unity has something like that?
Sometimes I want to make a script that would be shared to every project I created (helper class or extend editor) I want to make it copying every times I create project or just sharing as global asset or something
Did unity has something like that?
You can make it into a unitypackage and put it under “…\Unity\Editor\Standard Assets” and then select/import it everytime you create a project from the “Asset Packages” option from the Unity launcher.
Additional from @Sarper Soher I found the information about “module” from google. Thanks for your pinpoint folder name
http://homans.nhlrebel.com/2014/12/09/unity-4-6-and-modules/
I would create a unitypackage with some base classes/folder structure, and import those in every new project directly from the wizard. Ofc this package would need to be updated every time you decide you need something more added to it, That would be my choice.