[]如何往TiledMap格子内追加精灵

1、如何往TiledMap格子内追加精灵?
2、并且实现精灵与地图自动跟随?
希望能给说说都用了那些API
已邀请:

level100

赞同来自: cuixueying

感谢回复,给大家上一些代码,供新人参考。

//加载对话框图片
function load()
{
//mallLayer = tiledMap.getLayerByIndex(2);
mallLayer = tiledMap.getLayerByName("animation");
//Create Bear Start
for(var sCnt = 0; sCnt < 20; sCnt++){
createSprite(sCnt)
}
//Create Bear End

}

function createSprite(no){
var flower = new Sprite();
flower.loadImage(texture1);
flower.pos((0 + no) * 99.5, 73);
flower.mouseEnabled=true;
flower.alpha=1;
flower.on(Event.CLICK,this,function()
{
flower.scaleX=1.1;
flower.scaleY=1.1;
Laya.timer.once(100, this,function()
{
flower.scaleX=1;
flower.scaleY=1;
alert("My Name is Bear" + no);
return;
})
});
mallLayer._childs[0].addChild(flower);
}

cuixueying

赞同来自:

请参考下原生tiledMap使用文档:tiledMap_对象层应用
和laya官方提供的Demo:tiledMap

该问题目前已经被锁定, 无法添加新回复

商务合作
商务合作