console.log("load start bundle start");
cc.assetManager.loadBundle(BundleName.startBundle,function(error:Error,bundle:cc.AssetManager.Bundle){
if(error){
console.log("load start bundle :"+error);
return;
}
self._startBundle=bundle;
func();
console.log("load start bundle finish");
});
微信开发者工具 最新版本(1.05.2101181) cocos create(2.4.3)
真机上加载正常(iPhone 11)
这边可以给个 demo 或代码片段吗?