Version: 2018.3 (switch to 2019.1 )
Special folder names
Version Control
Other Versions

Exporting Packages

As you build your game, Unity stores a lot of metadata about your assetsAny media or data that can be used in your game or Project. An asset may come from a file created outside of Unity, such as a 3D model, an audio file or an image. You can also create some asset types in Unity, such as an Animator Controller, an Audio Mixer or a Render Texture. More info
See in Glossary
, such as import settings and links to other assets, among other information. If you want to transfer your assets into a different project and preserve all this information, you can export your assets as a Custom Package.

See Packages for detailed information on using Asset packagesA collection of files and data from Unity Projects, or elements of Projects, which are compressed and stored in one file, similar to Zip files. Packages are a handy way of sharing and re-using Unity Projects and collections of assets. More info
See in Glossary
, including importing and exporting.

Exporting New Packages

Use Export Package to create your own Custom Package.

  1. Open the project you want to export assets from.
  2. Choose Assets > Export Package… from the menu to bring up the Exporting Package dialog box. (See Fig 1: Exporting Package dialog box.)
  3. In the dialog box, select the assets you want to include in the package by clicking on the boxes so they are checked.
  4. Leave the include dependencies box checked to auto-select any assets used by the ones you have selected.
  5. Click on Export to bring up File Explorer (Windows) or Finder (Mac) and choose where you want to store your package file. Name and save the package anywhere you like.

HINT: When exporting a package Unity can export all dependencies as well. So, for example, if you select a SceneA Scene contains the environments and menus of your game. Think of each unique Scene file as a unique level. In each Scene, you place your environments, obstacles, and decorations, essentially designing and building your game in pieces. More info
See in Glossary
and export a package with all dependencies, then all models, textures and other assets that appear in the scene will be exported as well. This can be a quick way of exporting a bunch of assets without manually locating them all.

Fig 1: Exporting Package dialog box
Fig 1: Exporting Package dialog box

Exporting Updated Packages

Sometimes you may want to change the contents of a package and create a newer, updated version of your asset package. To do this:

  • Select the asset files you want in your package (select both the unchanged ones and the new ones).

  • Export the files as described above in Export Package, above.

NOTE: You can re-name an updated package and Unity will recognise it as an update, so you can use incremental naming, for example: MyAssetPackageVer1, MyAssetPackageVer2.

HINT: It is not good practise to remove files from packages and then replace them with the same name: Unity will recognise them as different and possibly conflicting files and so display a warning symbol when they are imported. If you have removed a file and then decide to replace it, it is better to give it a different, but related name to the original.


Did you find this page useful? Please give it a rating:

Special folder names
Version Control