Exemple #1
0
 //下载中
 public void OnABDownloading()
 {
     m_Progressimg.fillAmount = GetObject.GetDownLoadProgress();
     if (m_Assetisdownloading)
     {
         return;
     }
     m_Assetisdownloading   = true;
     m_Downloadbtntext.text = "下载中";
     m_Downloadbtn.gameObject.SetActive(false);
     m_Downloadprogress.gameObject.SetActive(true);
     m_Progressimg.gameObject.SetActive(true);
     //Debug.Log("进度"+GetObject.GetDownLoadProgress());
 }