Example #1
0
 public void Update()
 {
     if (active_controller != null)
     {
         long received, total; int percent;
         active_controller.GetProgress(out received, out total, out percent);
         downloadText.text = string.Format("Downloading... {0}%", percent);
     }
 }