scene-delete-tileset-from-editable-tilemap
Remove a tileset from an editable tilemap, updating all tile IDs while preserving the tileset asset.
Instructions
Delete a tileset from an editable tilemap. This will remove the tileset from the tilemap data, but it will not delete the tileset asset itself. It also will update the ID of the tiles of every layer in the map.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sceneId | Yes | The `id` of the scene. The `id` is not the name of the scene, else a unique identifier is set in the scene data. You need to read the scene data to get the `id`. | |
| tilemapId | Yes | The `id` of the editable tilemap to delete the tileset from. An 'editable tilemap' is not the same as a Tiled tilemap. | |
| tilesetName | Yes | The name of the tileset to delete from the editable tilemap. This should match the name defined in the tilemap's tilesets. |