美文网首页
LayaBox:加载图集

LayaBox:加载图集

作者: 一眼就认出你 | 来源:发表于2019-08-15 15:35 被阅读0次

    .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));
    

    相关文章

      网友评论

          本文标题:LayaBox:加载图集

          本文链接:https://www.haomeiwen.com/subject/ujknjctx.html