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

unity网络延迟

时间:2019-04-30 15:29:18      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:3.1   amp   ping   des   key   end   csharp   null   cti   

using UnityEngine;
using System.Collections;

public class Test_Ping : MonoBehaviour
{

    public string IP = "123.125.114.144";
    Ping ping;
    float delayTime;

    void Start()
    {
        SendPing();
    }

    void OnGUI()
    {
        GUI.color = Color.red;
        GUI.Label(new Rect(10, 10, 100, 20), "ping: " + delayTime.ToString() + "ms");

        if (null != ping && ping.isDone)
        {
            delayTime = ping.time;
            ping.DestroyPing();
            ping = null;
            Invoke("SendPing", 1.0F);//每秒Ping一次
        }
    }

    void SendPing()
    {
        ping = new Ping(IP);
    }
}

  

 

unity网络延迟

标签:3.1   amp   ping   des   key   end   csharp   null   cti   

原文地址:https://www.cnblogs.com/nafio/p/10796184.html

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