Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Be more specific about the tilewidth/height attributes #3981

Merged
merged 1 commit into from
Jun 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docs/reference/tmx-map-format.rst
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,12 @@ Can contain at most one: :ref:`tmx-chunksize`, :ref:`tmx-export`
map specific.)
- **name:** The name of this tileset.
- **class:** The class of this tileset (since 1.9, defaults to "").
- **tilewidth:** The (maximum) width of the tiles in this tileset. Irrelevant
for image collection tilesets, but stores the maximum tile width.
- **tileheight:** The (maximum) height of the tiles in this tileset.
Irrelevant for image collection tilesets, but stores the maximum tile
height.
- **tilewidth:** The width of the tiles in this tileset, which should be at
least 1 except in the case of image collection tilesets (in which case it
stores the maximum tile width).
- **tileheight:** The height of the tiles in this tileset, which should be at
least 1 except in the case of image collection tilesets (in which case it
stores the maximum tile height).
- **spacing:** The spacing in pixels between the tiles in this tileset
(applies to the tileset image, defaults to 0). Irrelevant for image
collection tilesets.
Expand Down