Вопрос

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