Overview
A hand-drawn autotile generator that produces all 47 Blob47 tiles after you draw only five tiles. Draw over the guide image, connect the result, and the complete autotile set is ready.
Usage tips
- The core workflow is to save the
guideoutput and draw over it. You draw only five roles: [fill], [isolated], [horizontal], [vertical], and [cross]. - RPG Maker A2-compatible layouts are supported, so existing RPG Maker assets can also be reused.
- If you do not want to draw the tiles, use
autotile_from_partsfor fully automatic assembly.
Related nodes
autotile_from_parts— the fully automatic counterpartrule_canvas— consumes the outputrule_tile_merge— combines multiple terrain typestiled_tileset_export— exports the atlas
What this node does
The 47 Blob47 tiles can be built entirely from combinations of five quarter-tile states across four quadrants. This node cuts quarters from a template image containing five role tiles and mechanically assembles all 47 patterns. You do not need to draw and arrange every tile individually.
Basic workflow:
- Place the node and save the
guideoutput (the guide image) as a PNG. - Draw your artwork over the guide (only five tiles).
- Connect the resulting image to the
templateinput. - Connect
tile_set/rule_setto Rule Canvas and paint with the terrain name.
Key settings
| ID | Name | Description |
|---|---|---|
layout |
Template layout | Either 横一列5タイル ([fill][isolated][horizontal][vertical][cross]) or RPGツクールA2互換 (2×3). |
material_id |
Terrain name | Name used when painting on the rule canvas, for example grass. |
cell_width / cell_height |
Cell width/height | Set to 0 to infer from the template or role tiles. |
columns |
Sheet columns | Number of columns in the sheet image (default: 8). |
Example wiring
AutotileFromTemplate.tile_set -> RuleCanvas.tile_set
AutotileFromTemplate.rule_set -> RuleCanvas.rule_set
RuleCanvas.resolved -> TiledMapExport.resolved
AutotileFromTemplate.atlas -> TiledTilesetExport.atlas
Related
- Autotile From Parts — batch-produce tiles from parameters without drawing
- Rule Canvas / Rule Render