码迷,mamicode.com
首页 > 编程语言 > 详细

unity WWW加载进度条

时间:2017-03-01 10:51:45      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:ons   complete   err   deb   erro   sys   collect   error:   mon   

using UnityEngine;
using System.Collections;

public class testProgress : MonoBehaviour {

   void Start () { StartCoroutine (getWWW()); } IEnumerator getWWW(){ WWW www = new WWW ("http://192.168.1.106/app/s01.mp3"); string progress; while(!www.isDone){ progress=(((int)(www.progress * 100)) % 100) + "%"; Debug.Log (progress); yield return 1; } if(www.error!=null){ Debug.Log ("loading error:"+www.url); }else{ progress="100%"; Debug.Log (progress); //enter complete code } } }

 

unity WWW加载进度条

标签:ons   complete   err   deb   erro   sys   collect   error:   mon   

原文地址:http://www.cnblogs.com/kingBook/p/6482964.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!