123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // --------------------------------------------------------------------------------------------------------------------
- // <copyright file="CurrentRoomMasterClientIdProperty.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.CurrentRoom.MasterClientId UI property.
- /// </summary>
- public class CurrentRoomMasterClientIdProperty : PropertyListenerBase
- {
- public Text Text;
- int _cache = -1;
- void Update()
- {
- if (PhotonNetwork.CurrentRoom != null)
- {
- if (PhotonNetwork.CurrentRoom.MasterClientId != _cache)
- {
- _cache = PhotonNetwork.CurrentRoom.MasterClientId;
- Text.text = _cache.ToString();
- this.OnValueChanged();
- }
- }
- else
- {
- if (_cache != -1)
- {
- _cache = -1;
- Text.text = "n/a";
- }
- }
- }
- }
- }
|