Version: 2022.1
Sprite Packer Modes
Sprite Shape Renderer

Sprite Atlas V2

The current SpriteA 2D graphic objects. If you are used to working in 3D, Sprites are essentially just standard textures but there are special techniques for combining and managing sprite textures for efficiency and convenience during development. More info
See in Glossary
Atlas V1 system packs Textures (from Sprites, Sprites within Textures, and Sprites in folders) into an Atlas Texture. It packs these Textures when it enters Play mode, or when it builds the Player or an AssetBundle. AssetDatabase V1 cannot have dependencies, and has no Importer support for named objects, so Unity packs its Sprite Atlases through a custom mechanism and stores the output data of Textures and render data in the Library/AtlasCache folder.

However, Sprite AtlasA texture that is composed of several smaller textures. Also referred to as a texture atlas, image sprite, sprite sheet or packed texture. More info
See in Glossary
V1 does not support the Cache ServerA standalone app that you can run on your local computer that stores the imported asset data to reduce the time it takes to import assets. More info
See in Glossary
. Unity can only cache Artifacts (data generated through the import process) stored in the Library folder. As it does not use an importer, the current system cannot use some of the functionalities exposed by AssetDatabase V2 (ADBV2) such as Cache Server support.

Sprite Atlas V2 development criteria

The Sprite Atlas V2 system is developed with the following criteria in mind:

  1. Use an Importer workflow that supports Cache Server and other ADBV2 features.

  2. No changes are made to the Sprite Atlas runtime object.

  3. Ensure that there is a migration path between current Sprite Atlases to Sprite Atlas V2.

  4. No major changes to the UX workflow.

Sprite Atlas V2 Inspector properties

There are no changes to the InspectorA Unity window that displays information about the currently selected GameObject, asset or project settings, allowing you to inspect and edit the values. More info
See in Glossary
properties and settings from that of Sprite Atlas V1 except for the following :

  1. The imported Sprite Atlas object is displayed at the bottom of the Inspector.


Sprite Atlas V2 Inspector properties.

Enabling Sprite Atlas V2

To enable Sprite Atlas V2 Sprite Packer mode, go to Edit > Project Settings > Sprite Packer > Mode, and select Sprite Atlas V2 - Enabled from the dropdown menu.

When you enable Sprite Atlas V2, there are the following effects:

  1. It becomes the default Mode when you create a Sprite Atlas through the Assets menu (Assets > Create > Sprite Atlas).

  2. Unity automatically migrates all existing Sprite Atlas V1 Assets to Sprite Atlas V2.

Due to the automatic migration, it is recommended that you make a backup of your V1 Sprite Atlases before you enable Sprite Atlas V2. Assets converted to V2 are incompatible with V1, and cannot be converted back.


  • Sprite Atlas version 2 Experimental has been added for 2020.1 NewIn20201
Sprite Packer Modes
Sprite Shape Renderer