Unity3d_UGUI加载场景进度条

项目之初,选用UGUI要做异步加载功能的loading界面。

当时UGUI相关的资源很少,多数都为NGUI的文章。


如果刚开始做异步加载,自己写的话会遇到bug,就是到了进度会卡在90%。当时有到外国的网站找解决方案,大多数都是到了90%后,继续人为加载。

不过后来有搜到下面这位大神的文章

原文:http://ez-dev.cn/?p=30


using UnityEngine;
using System.Collections;
using UnityEngine.UI;
public class ButtonMessage : MonoBehaviour {
    public Slider progress;
    public Text  progressValue;
    void Start() {
        progress.enabled = false;
        progress.gameObject.SetActive(false);
    }
    public void OnStartClick2() {
        Application.LoadLevel(1);
    }
    public void OnStartClick() {
        progress.gameObject.SetActive(true);
        StartCoroutine(LoadingScene(1));
    }
    private void setProgressValue(int value) {
        progress.value = value;
        progressValue.text = value + “%“;
    }
    private IEnumerator LoadingScene(int scene) {
        int displayProgress = 0;
        
        int toProgress = 0;
        
        AsyncOperation op = Application.LoadLevelAsync(scene);
        
        op.allowSceneActivation = false;
        
        while(op.progress < 0.9f) {
            
            toProgress = (int)op.progress * 100;
            
            while(displayProgress < toProgress) {
                
                ++displayProgress;
                
                setProgressValue(displayProgress);
                
                yield return new WaitForEndOfFrame();
                
            }
            
        }
        
        toProgress = 100;
        
        while(displayProgress < toProgress){
            
            ++displayProgress;
            
            setProgressValue(displayProgress);
            
            yield return new WaitForEndOfFrame();
            
        }
        
        op.allowSceneActivation = true;
    }
}


该脚本存在bug:

①在toProgress = (int)(op.progress * 100);要加一个括号,被这边坑了很久,否则会一直卡住

②AsyncOperation op要在协程意外定义,否则打包到安卓上会卡住


修改后的代码:

using UnityEngine;
using System.Collections;
using UnityEngine.UI;
public class ButtonMessage : MonoBehaviour {
    public Slider progress;
    public Text  progressValue;
    private AsyncOperation op;

    void Start() {
        op = Application.LoadLevelAsync("要跳转的关卡");
        StartCoroutine(LoadingScene());
    }
    
    private void setProgressValue(int value) {
        progress.value = value;
        progressValue.text = value + “%“;
    }
    private IEnumerator LoadingScene() {
        int displayProgress = 0;
        
        int toProgress = 0;
        
        op.allowSceneActivation = false;
        
        while(op.progress < 0.9f) {
            
            toProgress = (int)op.progress * 100;
            
            while(displayProgress < toProgress) {
                
                ++displayProgress;
                
                setProgressValue(displayProgress);
                
                yield return new WaitForEndOfFrame();
                
            }
            
        }
        
        toProgress = 100;
        
        while(displayProgress < toProgress){
            
            ++displayProgress;
            
            setProgressValue(displayProgress);
            
            yield return new WaitForEndOfFrame();
            
        }
        
        op.allowSceneActivation = true;
    }
}

关于UGUI加载场景进度条暂时就到这了,如果有什么不对或者遗漏的地方请指正!谢谢


  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值