Pregunta

I used tiled to make a TMX in staggered type. but when i run my code using this TMX the output in simulator is, overlapping tiles are not visible.

PLEASE HELP ME code i used in cocos2d is

    CCTMXTiledMap *_tileMap =  [CCTMXTiledMap tiledMapWithTMXFile:@"test.tmx"];
    _tileMap.scale = 1;
    [self addChild:_tileMap z:2];
¿Fue útil?

Solución

CCTMXTiledMap currently does not support staggered isometric tilemaps, only the regular isometric maps.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top