/unity-tilemap-2d
Build and script 2D tilemaps in Unity 6.3 LTS: the Grid + Tilemap components, the Tile Palette, tilemap colliders, rule tiles, and runtime SetTile/GetTile painting. Use when painting tile levels, adding a TilemapCollider2D, using rule or animated tiles, generating tilemaps from
$ npx -y skills add gamedev-skills/awesome-gamedev-agent-skills --skill unity-tilemap-2d --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/unity-tilemap-2d
Context preview
The summary Claude sees to decide when to auto-load this skill.
Build and script 2D tilemaps in Unity 6.3 LTS: the Grid + Tilemap components, the Tile Palette, tilemap colliders, rule tiles, and runtime SetTile/GetTile painting. Use when painting tile levels, adding a TilemapCollider2D, using rule or animated tiles, generating tilemaps from
SKILL.md
unity-tilemap-2d.SKILL.mdname: unity-tilemap-2d
description: >
Build and script 2D tilemaps in Unity 6.3 LTS: the Grid + Tilemap components, the Tile Palette,
tilemap colliders, rule tiles, and runtime SetTile/GetTile painting. Use when painting tile
levels, adding a TilemapCollider2D, using rule or animated tiles, generating tilemaps from
code, or when the user mentions Unity tilemap, tile palette, rule tile, or Grid.
Unity 2D Tilemap
Author and script tile-based 2D levels in Unity 6.3 LTS with the `Grid`/`Tilemap` system, the Tile Palette, colliders, and runtime painting. Targets **Unity 6.3 LTS (6000.3)**.
> **Package note:** the core Tilemap (`Grid`, `Tilemap`, `Tile`, `TilemapCollider2D`) is > built in. **Rule Tiles, Animated Tiles, and Tile Palette brushes live in the separate > "2D Tilemap Extras" package (`com.unity.2d.tilemap.extras`)** — install it via Package > Manager before using `RuleTile`.
When to use
- Use when laying out a 2D level by painting tiles, setting up a `Grid` + `Tilemap`, adding
collision to the map, using auto-tiling Rule Tiles, or generating/editing tiles from script.
- Use when scenes contain a `Grid` with `Tilemap` children, or `*.asset` tile/palette files.
**When _not_ to use:** level _design_ practice (pacing, blockout, layout principles) → `level-design`. 3D tile/grid placement → Unity's own 3D tooling (ProBuilder / grid brushes; no dedicated skill here). The platformer character that moves over the tiles → `platformer` / `unity-physics`.
Core workflow
1. **Create the grid:** GameObject → 2D Object → Tilemap → Rectangular. This makes a `Grid` with a child `Tilemap` (+ `TilemapRenderer`). Use one Tilemap per layer (background, ground, foreground) and set each renderer's sorting. 2. **Open the Tile Palette** (Window → 2D → Tile Palette), drag in a sliced sprite sheet to create `Tile` assets, then paint with the brush tools. 3. **Add collision** to the solid layer: `TilemapCollider2D`. For one merged collider (far cheaper and gap-free), also add `CompositeCollider2D` (+ a `Rigidbody2D` set to **Static**) and enable _Used By Composite_ on the tilemap collider. 4. **Auto-tile with Rule Tiles** (2D Tilemap Extras) so edges/corners pick the right sprite automatically instead of hand-placing every variant. 5. **Edit at runtime via script** with cell coordinates (`Vector3Int`): `SetTile`, `GetTile`, `SetTilesBlock`, converting world↔cell with the `Grid`/`Tilemap`. 6. **Verify** in Play mode: confirm collisions (Physics Debugger), sorting order, and that `RefreshAllTiles` ran after bulk edits.
Patterns
1. Painting tiles at runtime (cell coordinates)
using UnityEngine;
using UnityEngine.Tilemaps;
public class TilePainter : MonoBehaviour
{
[SerializeField] private Tilemap tilemap; // assign the target Tilemap
[SerializeField] private TileBase groundTile;
// World position -> cell, then place a tile.
public void PaintAt(Vector3 worldPos)
{
Vector3Int cell = tilemap.WorldToCell(worldPos);
tilemap.SetTile(cell, groundTile);
}
public bool IsSolid(Vector3 worldPos)
=> tilemap.GetTile(tilemap.WorldToCell(worldPos)) != null;
}2. Bulk fill a region (faster than per-cell `SetTile`)
// SetTilesBlock writes a whole BoundsInt in one call — use it for procedural rooms/floors.
public void FillFloor(Tilemap map, TileBase tile, int width, int height)
{
var bounds = new BoundsInt(0, 0, 0, width, height, 1);
var tiles = new TileBase[width * height];
for (int i = 0; i < tiles.Length; i++) tiles[i] = tile;
map.SetTilesBlock(bounds, tiles);
}3. Clearing and refreshing
tilemap.SetTile(cell, null); // null erases the tile at that cell
tilemap.RefreshTile(cell); // re-evaluate just this cell's rule/animated neighbors (cheap)
// RefreshAllTiles() re-evaluates the ENTIRE map — reserve it for full regenerations, not per-edit.
Pitfalls
- **`RuleTile` type not found** — it's not built in. Install the **2D Tilemap Extras** package
(`com.unity.2d.tilemap.extras`) via Package Manager.
- **A collider per tile tanks performance / leaves seams** — add a `CompositeCollider2D` with a
static `Rigidbody2D` and _Used By Composite_ to merge the whole layer into one smooth shape.
- **Confusing world and cell coordinates** — `SetTile`/`GetTile` take a `Vector3Int` _cell_,
not a world position. Always convert with `WorldToCell` / `CellToWorld`.
- **Tiles render behind/in front of sprites unexpectedly** — set each `TilemapRenderer`'s
Sorting Layer and Order in Layer; multiple tilemaps need explicit ordering.
- **Rule/animated tiles don't update after script edits** — refresh after writes, but prefer
the targeted `RefreshTile(cell)` for a few edits; `RefreshAllTiles()` re-evaluates every tile on the map and stalls large levels. Reserve the full refresh for whole-map regenerations.
- **Painting onto the wrong layer** — the active target Tilemap in the Tile Palette determines
where paint lands; check the "Active Tilemap" dropdown.
References
- Primary docs: Unity Manual "Tilemaps"
(`https://docs.unity3d.com/Manual/tilemaps/work-with-tilemaps/tilemap-reference.html`), `ScriptReference/Tilemaps.Tilemap`, and the 2D Tilemap Extras package manual (`https://docs.unity3d.com/Packages/com.unity.2d.tilemap.extras@1.6/manual/index.html`) for Rule Tiles.
Related skills
- `level-design` — engine-agnostic blockout, pacing, and tile layout practice.
- `procedural-gen` — generating the tile data (noise, RNG, dungeons) you feed to `SetTilesBlock`.
- `platformer` / `roguelike` — genres that compose this skill with movement and generation.
Read more
name: unity-tilemap-2d description: > Build and script 2D tilemaps in Unity 6.3 LTS: the Grid + Tilemap components, the Tile Palette, tilemap colliders, rule tiles, and runtime SetTile/GetTile painting. Use when painting tile levels, adding a TilemapCollider2D, using rule or animated tiles, generating tilemaps from code, or when the user mentions Unity tilemap, tile palette, rule tile, or Grid.
Unity 2D Tilemap
Author and script tile-based 2D levels in Unity 6.3 LTS with the `Grid`/`Tilemap` system, the Tile Palette, colliders, and runtime painting. Targets **Unity 6.3 LTS (6000.3)**.
> **Package note:** the core Tilemap (`Grid`, `Tilemap`, `Tile`, `TilemapCollider2D`) is > built in. **Rule Tiles, Animated Tiles, and Tile Palette brushes live in the separate > "2D Tilemap Extras" package (`com.unity.2d.tilemap.extras`)** — install it via Package > Manager before using `RuleTile`.
When to use
- Use when laying out a 2D level by painting tiles, setting up a `Grid` + `Tilemap`, adding
collision to the map, using auto-tiling Rule Tiles, or generating/editing tiles from script.
- Use when scenes contain a `Grid` with `Tilemap` children, or `*.asset` tile/palette files.
**When _not_ to use:** level _design_ practice (pacing, blockout, layout principles) → `level-design`. 3D tile/grid placement → Unity's own 3D tooling (ProBuilder / grid brushes; no dedicated skill here). The platformer character that moves over the tiles → `platformer` / `unity-physics`.
Core workflow
1. **Create the grid:** GameObject → 2D Object → Tilemap → Rectangular. This makes a `Grid` with a child `Tilemap` (+ `TilemapRenderer`). Use one Tilemap per layer (background, ground, foreground) and set each renderer's sorting. 2. **Open the Tile Palette** (Window → 2D → Tile Palette), drag in a sliced sprite sheet to create `Tile` assets, then paint with the brush tools. 3. **Add collision** to the solid layer: `TilemapCollider2D`. For one merged collider (far cheaper and gap-free), also add `CompositeCollider2D` (+ a `Rigidbody2D` set to **Static**) and enable _Used By Composite_ on the tilemap collider. 4. **Auto-tile with Rule Tiles** (2D Tilemap Extras) so edges/corners pick the right sprite automatically instead of hand-placing every variant. 5. **Edit at runtime via script** with cell coordinates (`Vector3Int`): `SetTile`, `GetTile`, `SetTilesBlock`, converting world↔cell with the `Grid`/`Tilemap`. 6. **Verify** in Play mode: confirm collisions (Physics Debugger), sorting order, and that `RefreshAllTiles` ran after bulk edits.
Patterns
1. Painting tiles at runtime (cell coordinates)
using UnityEngine;
using UnityEngine.Tilemaps;
public class TilePainter : MonoBehaviour
{
[SerializeField] private Tilemap tilemap; // assign the target Tilemap
[SerializeField] private TileBase groundTile;
// World position -> cell, then place a tile.
public void PaintAt(Vector3 worldPos)
{
Vector3Int cell = tilemap.WorldToCell(worldPos);
tilemap.SetTile(cell, groundTile);
}
public bool IsSolid(Vector3 worldPos)
=> tilemap.GetTile(tilemap.WorldToCell(worldPos)) != null;
}2. Bulk fill a region (faster than per-cell `SetTile`)
// SetTilesBlock writes a whole BoundsInt in one call — use it for procedural rooms/floors.
public void FillFloor(Tilemap map, TileBase tile, int width, int height)
{
var bounds = new BoundsInt(0, 0, 0, width, height, 1);
var tiles = new TileBase[width * height];
for (int i = 0; i < tiles.Length; i++) tiles[i] = tile;
map.SetTilesBlock(bounds, tiles);
}3. Clearing and refreshing
tilemap.SetTile(cell, null); // null erases the tile at that cell tilemap.RefreshTile(cell); // re-evaluate just this cell's rule/animated neighbors (cheap) // RefreshAllTiles() re-evaluates the ENTIRE map — reserve it for full regenerations, not per-edit.
Pitfalls
- **`RuleTile` type not found** — it's not built in. Install the **2D Tilemap Extras** package
(`com.unity.2d.tilemap.extras`) via Package Manager.
- **A collider per tile tanks performance / leaves seams** — add a `CompositeCollider2D` with a
static `Rigidbody2D` and _Used By Composite_ to merge the whole layer into one smooth shape.
- **Confusing world and cell coordinates** — `SetTile`/`GetTile` take a `Vector3Int` _cell_,
not a world position. Always convert with `WorldToCell` / `CellToWorld`.
- **Tiles render behind/in front of sprites unexpectedly** — set each `TilemapRenderer`'s
Sorting Layer and Order in Layer; multiple tilemaps need explicit ordering.
- **Rule/animated tiles don't update after script edits** — refresh after writes, but prefer
the targeted `RefreshTile(cell)` for a few edits; `RefreshAllTiles()` re-evaluates every tile on the map and stalls large levels. Reserve the full refresh for whole-map regenerations.
- **Painting onto the wrong layer** — the active target Tilemap in the Tile Palette determines
where paint lands; check the "Active Tilemap" dropdown.
References
- Primary docs: Unity Manual "Tilemaps"
(`https://docs.unity3d.com/Manual/tilemaps/work-with-tilemaps/tilemap-reference.html`), `ScriptReference/Tilemaps.Tilemap`, and the 2D Tilemap Extras package manual (`https://docs.unity3d.com/Packages/com.unity.2d.tilemap.extras@1.6/manual/index.html`) for Rule Tiles.
Related skills
- `level-design` — engine-agnostic blockout, pacing, and tile layout practice.
- `procedural-gen` — generating the tile data (noise, RNG, dungeons) you feed to `SetTilesBlock`.
- `platformer` / `roguelike` — genres that compose this skill with movement and generation.
<img src="docs/assets/banner.png" width="820" alt="awesome-gamedev-agent-skills — game-dev skills for AI coding agents.
Repo: gamedev-skills/awesome-gamedev-agent-skills
Other skills on awesome-gamedev-agent-skills.
- /audio-design
Implement game audio practice — bus/mixer architecture and gain in decibels, ducking (sidechain), adaptive/dynamic music via layering and re-sequencing, SFX variation, and beat synchronization. Engine-neutral. Use when the user mentions audio mixing, audio buses,
Open skill - /camera-systems
Build game cameras that feel good — 2D follow with a deadzone, look-ahead, smoothing, and level-bounds clamping; 3D third-person orbit with collision and first-person look; plus multi-target framing and a shake hook. Engine-neutral techniques that pair with the engine's camera
Open skill - /create-game-assets
Plan, generate, source, normalize, and validate cohesive visual game assets. Use for art direction, style bibles, sprites, tilesets, backgrounds, UI art, icons, textures, concept art, or 3D asset briefs.
Open skill - /dialogue-systems
Build branching dialogue and narrative — a node/choice graph with conditions, variables, and localization hooks — and choose between authoring tools Ink and Yarn Spinner or a custom data-driven runner. Engine-neutral. Use when the user mentions dialogue system, branching
Open skill - /game-ai
Design NPC and enemy decision-making with finite state machines, behavior trees, steering behaviors, and A* pathfinding — engine-neutral algorithms that pair with the detected engine's navigation API. Use when building enemy AI, an FSM or behavior tree, steering/flocking, or
Open skill - /game-feel
Add "juice" and game feel that makes actions satisfying — screen shake, hit-stop/freeze frames, tweened/eased motion, squash & stretch, knockback, and layered audio-visual feedback — as engine-neutral techniques that pair with the detected engine's tween, particle, and camera
Open skill

