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];
有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top