91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

unity中怎么實現場景切換進度條效果

發布時間:2021-08-06 16:40:32 來源:億速云 閱讀:116 作者:Leah 欄目:編程語言

unity中怎么實現場景切換進度條效果,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

一、UI。建立slider適當更改即可;

二、新增loadScene腳本,用來進行場景切換,將其綁定任意物體上面。博主以放置主相機為例。參數分別為進度條(用來設置value值),顯示進度文本text;

在設置中加入兩個場景:

三、腳本;

/// <summary>/// 場景切換/// 在unity 獲取當前加載進度progress中,其中最多到0.9.只有等到加載到第二個場景才會到1/// 所有在加載進度條時如果progress的值近似0.9,則直接將進度參數設置為1,實現進度到100%/// 并且progress的值是在一幀加載一些資源,所以其值不會是連續的,因此設置兩個參數來記錄當前/// 進度和頁面顯示的進度,進行++。/// </summary>public class loadScene : MonoBehaviour{ AsyncOperation async; public Slider slider; public Text text;//百分制顯示進度加載情況 void Start() { //開啟協程 StartCoroutine("loginMy"); }  void Update() {  } IEnumerator loginMy() { int displayProgress = 0; int toProgress = 0; AsyncOperation op = SceneManager.LoadSceneAsync(1); op.allowSceneActivation = false; while (op.progress < 0.9f) //此處如果是 <= 0.9f 則會出現死循環所以必須小0.9 {  toProgress = (int)op.progress * 100;  while (displayProgress < toProgress)  {  ++displayProgress;  SetLoadingPercentage(displayProgress);  yield return new WaitForEndOfFrame();//ui渲染完成之后  } } toProgress = 100; while (displayProgress < toProgress) {  ++displayProgress;  SetLoadingPercentage(displayProgress);  yield return new WaitForEndOfFrame(); } op.allowSceneActivation = true; } private void SetLoadingPercentage(int displayProgress) { slider.value = displayProgress; text.text = displayProgress.ToString() + "%"; }}

看完上述內容,你們掌握unity中怎么實現場景切換進度條效果的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

科尔| 兴业县| 乌兰浩特市| 稷山县| 长泰县| 茶陵县| 罗江县| 莱芜市| 鞍山市| 伊金霍洛旗| 体育| 东乡族自治县| 门源| 陈巴尔虎旗| 介休市| 花莲县| 宜兰县| 西华县| 文安县| 祥云县| 喀喇沁旗| 合作市| 江西省| 萨迦县| 陇南市| 马边| 乌审旗| 江阴市| 会昌县| 资讯| 青海省| 三穗县| 临泽县| 山阳县| 万宁市| 琼海市| 获嘉县| 新绛县| 塔城市| 枝江市| 巴彦淖尔市|