Ping

作者:追风剑情 发布于:2014-7-14 22:24 分类:Unity3d

  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class Test_Ping : MonoBehaviour {
  5.  
  6. public string IP = "220.181.111.86";
  7. Ping ping;
  8. float delayTime;
  9.  
  10. void Start(){
  11. SendPing ();
  12. }
  13.  
  14. void OnGUI () {
  15. GUI.color = Color.red;
  16. GUI.Label(new Rect(10, 10, 100, 20), "ping: "+delayTime.ToString()+"ms");
  17.  
  18. if (null != ping && ping.isDone) {
  19. delayTime = ping.time;
  20. ping.DestroyPing();
  21. ping = null;
  22. Invoke ("SendPing", 1.0F);//每秒Ping一次
  23. }
  24. }
  25.  
  26. void SendPing()
  27. {
  28. ping = new Ping(IP);
  29. }
  30. }
  1. 把以上脚本挂在主摄像机上。
  1. 运行效果
  1. Ping.png

标签: Ping

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号