// -------------------------------------------------------------------------------------------------------------------- // // Part of: Pun Cockpit // // developer@exitgames.com // -------------------------------------------------------------------------------------------------------------------- using UnityEngine.UI; namespace Photon.Pun.Demo.Cockpit { /// /// PhotonNetwork.CurrentRoom.EmptyRoomTtl UI property. /// public class CurrentRoomEmptyRoomTtlProperty : PropertyListenerBase { public Text Text; int _cache = -1; void Update() { if (PhotonNetwork.CurrentRoom != null) { if (PhotonNetwork.CurrentRoom.EmptyRoomTtl != _cache) { _cache = PhotonNetwork.CurrentRoom.EmptyRoomTtl; Text.text = _cache.ToString(); this.OnValueChanged(); } } else { if (_cache != -1) { _cache = -1; Text.text = "n/a"; } } } } }