Hi,
Is there a way to make our “New Project…” template for Unity? For example, when we make a new project with our template it should make some directories and maybe some files that we use in every project.
Hi,
Is there a way to make our “New Project…” template for Unity? For example, when we make a new project with our template it should make some directories and maybe some files that we use in every project.
Create your template, and then export it as asset bundle.
Then whenever you make a new project, just import your template assets.
You can also export your template to a unitypackage.
Place your unitypackage in Unity 3\Editor\Standard Packages and it will show up in the new-project dialog.
Thanks for the answers.
I dont quite get the export as an “asset bundle”, didnt get into the Asset Bundle thing yet.
My intention was not export and import whenever I make a new project, neither asset nor package.
Thanks anyway.
You would only have to export the first time to create an asset bundle template. Then, you would import the bundle as your template, but hopefully you’ve figured that out by now…
Assetbundles are just for runtime loading of assets not for the loading for Files in the editor.
Unitypackage is the way to go.
Unity does not support replacing the default project setup, but Unitypackages are a nice way to get you started faster.
Another way would to create a project that you would like to use as a template and make a copy of it so you can just copy that “template project” when you like to create a new project.