我想使用 pytmx 从 Tiled (TMX) 文件中获取图块标签,我找不到语法
I want to get the tile labels from a Tiled (TMX) file using pytmx, i cannot find the syntax
我可以得到图片路径,还有tile的ID
但是我似乎无法获得 "Type" 或瓷砖或除以下以外的任何其他属性:
图块 ID、宽度、高度和图像
我的代码示例:
tmxdata = pytmx.TiledMap('new_map.tmx')
print(tmxdata.get_tile_properties(0, 0, 0))
给出:
{1: {'height': '16', 'source': 'images/block.png', 'trans': None, 'frames': [], 'width': '16'}}
当您的地图在该位置有一个图块时
请帮忙,谢谢,我想至少 PyTMX 比其他 TMX 模块要好
tile "type" 属性最近才添加到 Tiled 1.0 中,因此在您使用的库中找不到它也就不足为奇了。
您最好的选择可能是通过在 https://github.com/bitcraft/PyTMX.
的 GitHub 项目上提出问题来联系库的作者。
我可以得到图片路径,还有tile的ID
但是我似乎无法获得 "Type" 或瓷砖或除以下以外的任何其他属性:
图块 ID、宽度、高度和图像
我的代码示例:
tmxdata = pytmx.TiledMap('new_map.tmx')
print(tmxdata.get_tile_properties(0, 0, 0))
给出:
{1: {'height': '16', 'source': 'images/block.png', 'trans': None, 'frames': [], 'width': '16'}}
当您的地图在该位置有一个图块时
请帮忙,谢谢,我想至少 PyTMX 比其他 TMX 模块要好
tile "type" 属性最近才添加到 Tiled 1.0 中,因此在您使用的库中找不到它也就不足为奇了。
您最好的选择可能是通过在 https://github.com/bitcraft/PyTMX.
的 GitHub 项目上提出问题来联系库的作者。