0

在我的 cocos2d iphone 项目中,我正在尝试添加平铺地图。平铺地图只有一个图像层。我正在尝试通过以下代码添加此平铺地图。

-(id) init
{
if( (self=[super init])) {
    theMape = [CCTMXTiledMap tiledMapWithTMXFile:@"demomap.tmx"];
    [self addChild:theMape z:1];
}
return self;
}

我的瓷砖地图的来源是:

<?xml version="1.0" encoding="UTF-8"?>
<map version="1.0" orientation="orthogonal" width="20" height="180" tilewidth="32" tileheight="32">
<tileset firstgid="1" name="block" tilewidth="32" tileheight="32">
<image source="block.png" width="90" height="34"/>
<tile id="0">
<properties>
  <property name="type" value="base"/>
</properties>
</tile>
</tileset>
<imagelayer name="backgorund" width="20" height="180">
 <image source="bgimage.png"/>
</imagelayer>
</map>

我的资源文件夹中有bgimage.png文件。

当它只包含平铺层时,它将显示该层。我不知道这有什么问题?

4

1 回答 1

1

cocos2d-iphone 不支持 Tiled 的图像层,只支持 tile 层。

于 2013-05-15T08:49:10.113 回答