scene-resize-editable-tilemap-layer
Resize the data dimensions of an editable tilemap layer and update tile IDs across all layers for consistency.
Instructions
Resize an editable tilemap layer. This will resize the layer data, but it will not resize the layer game object itself. It also will update the ID of the tiles of every layer in the map.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| width | Yes | The new width of the layer in tiles. | |
| height | Yes | The new height of the layer in tiles. | |
| layerId | Yes | The `id` of the editable tilemap layer to resize. An editable tilemap layer is also a game object, so you can use the `id` of the EditableLayer game object. | |
| 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`. |