纳金网

标题: 加载进度条<带当前加载百分之多少> [打印本页]

作者: 王者再临    时间: 2014-12-31 21:29
标题: 加载进度条<带当前加载百分之多少>
  1. using UnityEngine;

  2. using System.Collections;

  3. public class HHHHHHHH : MonoBehaviour {

  4. public GUIStyle progressbar_bj;   //背景图

  5. public GUIStyle progressbar_qj;   //前景图

  6. public GameObject obj;

  7. WWW www;

  8. bool loading=true;

  9. public Texture img;

  10. float Length=0;

  11. void Start () {

  12. StartCoroutine(ABC(“[img]http://images.earthcam.com/ec_metros/ourcams/fridays.jpg[/img]”));

  13. }

  14. // Update is called once per frame

  15. void Update ()

  16. {

  17. if(!www.isDone)

  18. {

  19. print(www.progress);

  20. loading=true;

  21. }

  22. else

  23. {

  24. loading=false;

  25. obj.renderer.material.mainTexture = www.texture;

  26. www=null;

  27. }

  28. }

  29. void OnGUI ()

  30. {

  31. //~ GUI.Skin=big;

  32. if(loading)

  33. {

  34. GUI.Label(new Rect(100,30,200,30),“”, progressbar_bj);

  35. GUI.Label(new Rect(100,30,www.progress*200,30),“”, progressbar_qj);

  36. GUI.Label (new Rect (150,35, 200, 30),“Loading:    ”+(www.progress*100).ToString().Substring(0,2)+“%”);

  37. }

  38. }

  39. public IEnumerator ABC(string URL)

  40. {

  41. www = new WWW (URL);

  42. yield return www;

  43. }

  44. }
复制代码

作者: xizhenlong    时间: 2015-1-16 15:17
不错 ,有用               




欢迎光临 纳金网 (http://rs.narkii.com/club/) Powered by Discuz! X2.5