首页 > 编程语言 > 详细

unity3d 资源进度读取

时间:2017-09-16 19:50:49      阅读:222      评论:0      收藏:0      [点我收藏+]
using UnityEngine;
using System.Collections;
using UnityEngine.SceneManagement;

public class _03starLoad : MonoBehaviour {
    public GameObject LoadingBar;

    public string str;
    // Use this for initialization
    void Start () 
    {

        if (str != "")
        {
            StartCoroutine(StartLoading(str));
        }
    }
    //小场景载入
    IEnumerator StartLoading(string str)
    {
        float i=0;
        AsyncOperation acOp = SceneManager.LoadSceneAsync(str);
        acOp.allowSceneActivation = false;
        while(i<=100)
        {
            i++;
            LoadingBar.GetComponent<UISlider>().value = i/100;
            yield return new WaitForEndOfFrame();
        }
        acOp.allowSceneActivation = true;
    }

    /*大场景载入
     IEnumerator StartLoading(string str)
    {
      
        AsyncOperation acOp = SceneManager.LoadSceneAsync(str);
        acOp.allowSceneActivation = false;
        LoadingBar.GetComponent<UISlider>().value =acOp.progress;
        yield return acOp;
    }
     
    */
}

 

unity3d 资源进度读取

原文:http://www.cnblogs.com/lichuangblog/p/7532106.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!