首页 > 代码库 > 异步加载
异步加载
引自:http://www.cnblogs.com/wonderKK/p/3976213.html
using UnityEngine;using System.Collections;public class LoadingScene : MonoBehaviour { public UISlider processBar; private AsyncOperation async; private uint _nowprocess; // Use this for initialization void Start () { _nowprocess = 0; StartCoroutine(loadScene()); } IEnumerator loadScene() { //异步读取场景。 //Globe.loadName 就是A场景中需要读取的C场景名称。 async = Application.LoadLevelAsync(GlobalVaule.LoadLevelName); async.allowSceneActivation = false; //读取完毕后返回, 系统会自动进入C场景 yield return async; } void Update() { if(async == null) { return; } uint toProcess; Debug.Log(async.progress * 100); if(async.progress < 0.9f)//坑爹的progress,最多到0.9f { toProcess = (uint)(async.progress * 100); } else { toProcess = 100; } if(_nowprocess < toProcess) { _nowprocess++; } processBar.value = _nowprocess/100f; if (_nowprocess == 100)//async.isDone应该是在场景被激活时才为true { async.allowSceneActivation = true; } }}
异步加载
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。