赞
踩
首先,学习异步场景加载之前,先了解什么是异步场景加载。
在目前市面上基本所有的游戏都使用了这个方法,举个例子
(绝地求生加载画面)
(英雄联盟加载画面)
从这两个例子不难看出异步加载无非就是让玩家等待游戏进度条加载。
这边就简单介绍如何使用这个方法。
我这边简单操作一下
(按下按钮Loadpanel 界面隐藏,显示Background界面,当数值加载至100%,跳转到游戏场景)
做完前面几步,写一个关于的AsyncOperation脚本
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using UnityEngine.UI;
- using UnityEngine.SceneManagement;
-
- public class Begin : MonoBehaviour
- {
- public GameObject Background;
- //异步场景加载界面
- public Text text;
- //获取加载界面的文本
- public Slider slider;
- //设置共有对象来改变slider的value值
-
- public void loadNext()
- {
- StartCoroutine(loadlevel());
- //使用loadlevel方法
- }
-
- IEnumerator loadlevel()
- //设置协程类型方法loadlevel
- {
- Background.SetActive(true);
-
- AsyncOperation operation = SceneManager.LoadSceneAsync(SceneManager.GetActiveScene().buildIndex + 1);
- //加载本场景数值 +1的场景SampleScene
- operation.allowSceneActivation = false;
- //先不加载下一场景
- while (!operation.isDone)
- {
- slider.value = operation.progress;
- //operation.progress本质上就是数值
- text.text = operation.progress * 100 + "%";
-
- if (operation.progress >= 0.9f)
- //由于该方法本身的问题所以需要手动把数值改为100%
- {
- slider.value = 1;
- text.text = "Press any key";
- if (Input.anyKeyDown)
- {
- operation.allowSceneActivation = true;
- //按下任意按钮开始加载下一场景
- }
- }
- yield return null;
- }
- }
- }
简单展示一下
说明:这个游戏比较小,所以异步加载界面数值变化不明显。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。