微信小游戏加载太慢问题总结

开发微信小游戏加载过慢问题总结了一下几个优化方案:

1:使用预加载的方式,调用Creator提供的API=>preLoadScene.

cc.director.preloadScene('Main', (completedCount, totalCount, item) => {
    this.percent = Math.floor(completedCount / totalCount * 100);
    this.LoadingBar.progress = this.percent / 100;
    this.loadText.string = this.percent + '%';
    if (this.LoadingBar.progress >= 1) {
        cc.director.loadScene('Main');
    }
}, (error) => {
    console.log(error);
});

2:压缩,简单暴力的方式:https://tinypng.com/,这是一个免费而且超高压缩比的一个压图网站,推荐给大家

3:更改微信的最大同时下载量,如图:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值