You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.2 KiB
42 lines
1.2 KiB
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="RoomListView.cs" company="Exit Games GmbH">
|
|
// Part of: Pun Cockpit
|
|
// </copyright>
|
|
// <author>developer@exitgames.com</author>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
using UnityEngine.UI;
|
|
|
|
namespace Photon.Pun.Demo.Cockpit
|
|
{
|
|
/// <summary>
|
|
/// PhotonNetwork.GetPing() UI property.
|
|
/// </summary>
|
|
public class PingProperty : PropertyListenerBase
|
|
{
|
|
public Text Text;
|
|
|
|
int _cache = -1;
|
|
|
|
void Update()
|
|
{
|
|
if (PhotonNetwork.IsConnectedAndReady)
|
|
{
|
|
if (PhotonNetwork.GetPing() != _cache)
|
|
{
|
|
_cache = PhotonNetwork.GetPing();
|
|
Text.text = _cache.ToString() + " ms";
|
|
this.OnValueChanged();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (_cache != -1)
|
|
{
|
|
_cache = -1;
|
|
Text.text = "n/a";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |