创建JSTileMap后更新切片

时间:2015-04-21 12:58:24

标签: swift jstilemap

我正在加载一个大小为32x32的TMX文件,我希望能够在创建后控制从JSTileMap生成的精灵的大小和图像。

我可以改变它们的大小,但我无法获得加载适当图像的图像。

如果有人知道如何编辑JSTileMap的代码,以便它可以加载我的图像的2倍也可以。

我用于在创建后检索这些图块的方法

for var a = 0; a < Int(tileMap.mapSize.width); a++ { 
for var b = 0; b < Int(tileMap.mapSize.height); b++ {
// here I can retrieve the tiles and alter their size but I am unable to differentiate what tile image it is so I can't load the correct image
}}

0 个答案:

没有答案