[]请教——layabox如何加载多个图集
Laya.loader.load("res/atlas/comp.atlas",Laya.Handler.create(this,onload));
这样写只能添加一个图集,我想问有没有办法用一句代码同时添加其他图集
这样写只能添加一个图集,我想问有没有办法用一句代码同时添加其他图集
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
叮当(H5研发)
赞同来自: Lancer
{url:"res/atlas/comp.atlas", type: Loader.ATLAS},
{url:"res/atlas/all.atlas", type: Loader.ATLAS}
];
Laya.loader.load(arr,Laya.Handler.create(this,onload));