Overview
Creates a RuleTileSet and a single-image atlas from a list of tile images.
It packages tiles drawn or processed in the graph into a form usable by rule-tile
nodes and Tiled export.
Usage tips
- The entry point for custom-image rule tiles is tile images bundled with
list_create→ rule_tile_pack →rule_canvas.tile_set. - For the regular Wang16 or Blob47 image counts used by autotiles,
autotile_from_parts/autotile_from_templateare better upstream tools. This node packages any number of images. - Use the
atlasoutput together withtiled_tileset_export. - Animated tiles use their first frame as the representative image in the atlas
and sprite sheet. Use
rule_animation_renderwhen you need every frame.
Related nodes
rule_canvas/rule_render— consume tile_settiled_tileset_export— exports the atlasautotile_from_parts/autotile_from_template— generate autotile imagesrule_tile_merge— combines tile sets
What this node does
From a tile-image list or existing rule tile set, creates the RuleTileSet used by
rule-tile nodes plus a RuleTileAtlas, sprite sheet, and image containing every
tile. It replaces the legacy Tile Atlas Pack.
Key settings
| ID | Name | Description |
|---|---|---|
tileset_name |
Tile-set name | Name used when building from an image list. |
cell_width / cell_height |
Cell width/height | At 0, inferred from the first tile image. |
grid_kind |
Grid kind | Orthogonal / isometric diamond. |
render_order |
Render order | Direction used when layering tiles. |
columns |
Columns | Number of sheet columns; 0 is automatic. |
fill_order |
Fill order | Whether tiles advance rightward or downward. |
Example wiring
RuleTilePack.tile_set -> RuleCanvas.tile_set
RuleTilePack.tile_set -> TiledTilesetExport.tile_set
RuleTilePack.atlas -> TiledTilesetExport.atlas