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.
32 lines
887 B
32 lines
887 B
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="AppVersionProperty.cs" company="Exit Games GmbH">
|
|
// Part of: Pun Cockpit
|
|
// </copyright>
|
|
// <author>developer@exitgames.com</author>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace Photon.Pun.Demo.Cockpit
|
|
{
|
|
/// <summary>
|
|
/// PhotonNetwork.AppVersion UI property.
|
|
/// </summary>
|
|
public class AppVersionProperty : MonoBehaviour
|
|
{
|
|
|
|
public Text Text;
|
|
|
|
string _cache;
|
|
|
|
void Update()
|
|
{
|
|
if (PhotonNetwork.AppVersion != _cache)
|
|
{
|
|
_cache = PhotonNetwork.AppVersion;
|
|
Text.text = _cache;
|
|
}
|
|
}
|
|
}
|
|
} |