Unity3d制作Loading场景进度条

  1.   
  2.     public void LoadGame()  
  3.     {  
  4.         StartCoroutine(StartLoading("001"));  
  5.     }  
  6.   
  7.     private IEnumerator StartLoading(string sceneName)  
  8.     {  
  9.         int displayProgress = 0;  
  10.         int toProgress = 0;  
  11.         AsyncOperation op = Application.LoadLevelAsync(sceneName);   //异步对象  
  12.         op.allowSceneActivation = false;  
  13.         while (op.progress < 0.9f)  
  14.         {  
  15.             toProgress = (int)op.progress * 100;  
  16.             while (displayProgress < toProgress)  
  17.             {  
  18.                 ++displayProgress;  
  19.                 SetLoadingPercentage(displayProgress);  
  20.                 yield return new WaitForEndOfFrame();  
  21.             }  
  22.         }  
  23.   
  24.         toProgress = 100;  
  25.         while (displayProgress < toProgress)  
  26.         {  
  27.             ++displayProgress;  
  28.             SetLoadingPercentage(displayProgress);  
  29.             yield return new WaitForEndOfFrame();  
  30.         }  
  31.         op.allowSceneActivation = false;  
  32.     }  
  33.   
  34.     private void SetLoadingPercentage(int DisplayProgress)     //设置显示进度  
  35.     {  
  36.         proLoadingBar.value = DisplayProgress * 0.01f;  
  37.         labProgress.text = DisplayProgress.ToString() + "%";  
  38.     }  
  39. }  
效果如下:(.gif图可能会有点卡,但是实际效果是完全很顺畅不会卡的。)
Unity3d制作Loading场景进度条_第1张图片


你可能感兴趣的:(unity3d)