Version: Unity 6 (6000.0)
Language : English
Tilemaps in Unity
Work with tilemaps

Tilemaps

Unity’s TilemapA GameObject that allows you to quickly create 2D levels using tiles and a grid overlay. More info
See in Glossary
system stores and handles Tile Assets for creating 2D levels, which makes it easy to create and iterate level design cycles within Unity. The Tilemap system transfers the required information from the Tiles placed on it to other related components such as the Tilemap Renderer and the Tilemap Collider 2D.

By default, the Tilemap package isn’t included in the Unity Editor, so you must download the 2D Tilemap Editor package from the Package Manager.

When you create a Tilemap, the Grid component is automatically parented to the Tilemap and acts as a guide when you lay out Tiles onto the Tilemap. To create, change, or pick the Tiles for painting onto a Tilemap, use the Tile Palette (menu: Window > 2D > Tile Palette) and its tools. For more information, refer to Creating a Tile Palette and the Tile Palette editor reference.

Render Pipeline Compatibility

Tilemaps are supported by all render pipelineA series of operations that take the contents of a Scene, and displays them on a screen. Unity lets you choose from pre-built render pipelines, or write your own. More info
See in Glossary
that support 2D projects.

Feature name Universal Render Pipeline (URP) High Definition Render Pipeline (HDRP) Built-in Render Pipeline
Tilemaps Yes Yes No
Tilemaps in Unity
Work with tilemaps