tiledmap的截图
chrom上的截图
BackgroundLayer 的代码:
var BackgroundLayer = cc.Layer.extend({
map:null,
ctor:function () {
this._super();
this.init();
},
init:function () {
this._super();
this.map = cc.TMXTiledMap.create(res.bg_tmx);
this.addChild(this.map);
},
});
这个地图显示的错误怎么解决啊?

