查看: 1321|回复: 0
打印 上一主题 下一主题

[其他] 场景切换,unity异步加载,loading条做法

[复制链接]

711

主题

10

听众

5805

积分

高级设计师

Rank: 6Rank: 6

纳金币
2954
精华
3

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

跳转到指定楼层
楼主
发表于 2015-2-19 22:21:09 |只看该作者 |倒序浏览
参考了网上大神的做法,做了一点小改动,效果还不错,给大家分享。

  AsyncOperation mAsync; //需要加载的场景
    public UISlider LoadingSlider; //NGUI做的
    public UILabel GameTip;

     // Use this for initialization
     void OnEnable()
     {
         StartCoroutine("LoadScene");

         GameTip.text = GameTipsController.Singleton.RandomTip();
     }

     void OnDisable()
     {
         StopAllCoroutines();
     }


     // Update is called once per frame
     void Update()
     {
     }

     IEnumerator LoadScene()
     {
         int displayProgress = 0;
         int toProgress = 0;
         mAsync = Application.LoadLevelAsync(StaticDataCache.Singleton.CurLoadScene);
         mAsync.allowSceneActivation = false;
         Debug.Log(mAsync.progress);
         while (mAsync.progress < 0.9f)
         {
             toProgress = (int)mAsync.progress * 100;
             while (displayProgress < toProgress)
             {
                 ++displayProgress;
                 SetLoadingSlider(displayProgress);
                 yield return new WaitForEndOfFrame() ;
             }
             yield return new WaitForEndOfFrame();
         }

         toProgress = 100;
         while (displayProgress < toProgress)
         {
             ++displayProgress;
             SetLoadingSlider(displayProgress);
             yield return new WaitForEndOfFrame();
         }
         mAsync.allowSceneActivation = true;
         gameObject.SetActive(false);

     }

     void SetLoadingSlider(int progress)
     {
         float tmp = (float)((float)progress / 100);
         LoadingSlider.value = tmp;
     }
分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏1 支持支持0 反对反对0
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

手机版|纳金网 ( 闽ICP备2021016425号-2/3

GMT+8, 2024-12-1 06:53 , Processed in 0.082044 second(s), 28 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部