Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser

Quick Information

This addon adds Import/Export buttons to TileMap's editor inspector. You can export TileMapData as resource file and import them.This addon is useful when you want to copy chunk of tiles or you need to place tiles dynamically.GDScript Example:var tiles=load("res://map/objects/small_house.tres")tiles.place_on_tilemap(tilemap,house_position,override_flag)
TilemapDataExporter
Godot addon to export TimeMap data to resource file
Descriptions
This addon adds Import/Export buttons to TileMap's editor inspector. You can export TileMapData as resource file and import them.
This addon is useful when you want to copy chunk of tiles or you need to place tiles dynamically.
Usage (how to place tiles from code)
var tiles=load("res://map/objects/small_house.tres")
tiles.place_on_tilemap(tilemap,house_position,override_flag)
This addon adds Import/Export buttons to TileMap's editor inspector. You can export TileMapData as resource file and import them.
This addon is useful when you want to copy chunk of tiles or you need to place tiles dynamically.
GDScript Example:
var tiles=load("res://map/objects/small_house.tres")
tiles.place_on_tilemap(tilemap,house_position,override_flag)
Reviews
Quick Information

This addon adds Import/Export buttons to TileMap's editor inspector. You can export TileMapData as resource file and import them.This addon is useful when you want to copy chunk of tiles or you need to place tiles dynamically.GDScript Example:var tiles=load("res://map/objects/small_house.tres")tiles.place_on_tilemap(tilemap,house_position,override_flag)