.atlas是LayaAirIDE特有的图集格式,仅用于图集,所以在加载.atlas时不需要填写类型,和加载普通的单图方式一样,更加方便,是推荐的图集加载方式。atlas方式加载图集的示例代码为:
//atlas方式图集使用示例
Laya.loader.load("./res/atlas/test.atlas", Laya.Handler.create(this, this.onLoaded));
.json是一种兼容第三方的图集配置方式,由于.json文件应用广泛,不仅仅用于图集,所以为了识别是否为图集配置信息,在加载.json文件的图集时,需要填写类型进行区分。json方式加载图集的示例代码为:
//json方式图集使用示例
Laya.loader.load([{url: "res/atlas/test.json", type: Laya.Loader.ATLAS}], Laya.Handler.create(this, this.onLoaded));
打开一个view之前,加载图集数组的做法:
var assetArr:Array= [{url:"res/atlas/carShop.atlas"},{url:"res/atlas/text.atlas"}];
Laya.loader.load(assetArray,Handler.create(this,this.onLoadedComplete));
网友评论