12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // --------------------------------------------------------------------------------------------------------------------
- // <copyright file="CountOfRoomsProperty.cs" company="Exit Games GmbH">
- // Part of: Pun Cockpit
- // </copyright>
- // <author>developer@exitgames.com</author>
- // --------------------------------------------------------------------------------------------------------------------
- using UnityEngine.UI;
- using Photon.Realtime;
- namespace Photon.Pun.Demo.Cockpit
- {
- /// <summary>
- /// PhotonNetwork.CountOfRooms UIs property.
- /// </summary>
- public class CountOfRoomsProperty : PropertyListenerBase
- {
- public Text Text;
- int _cache = -1;
- void Update()
- {
- if (PhotonNetwork.NetworkingClient.Server == ServerConnection.MasterServer)
- {
- if (PhotonNetwork.CountOfRooms != _cache)
- {
- _cache = PhotonNetwork.CountOfRooms;
- Text.text = _cache.ToString();
- this.OnValueChanged();
- }
- }
- else
- {
- if (_cache != -1)
- {
- _cache = -1;
- Text.text = "n/a";
- }
- }
- }
- }
- }
|