您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
33 行
870 B
33 行
870 B
using TMPro;
|
|
using UnityEngine;
|
|
|
|
namespace LobbyRelaySample.UI
|
|
{
|
|
/// <summary>
|
|
/// Watches a lobby or relay code for updates, displaying the current code to lobby members.
|
|
/// </summary>
|
|
public class DisplayCodeUI : ObserverPanel<LocalLobby>
|
|
{
|
|
public enum CodeType { Lobby = 0, Relay = 1 }
|
|
|
|
[SerializeField]
|
|
TMP_InputField m_outputText;
|
|
[SerializeField]
|
|
CodeType m_codeType;
|
|
|
|
public override void ObservedUpdated(LocalLobby observed)
|
|
{
|
|
string code = m_codeType == CodeType.Lobby ? observed.LobbyCode : observed.RelayCode;
|
|
|
|
if (!string.IsNullOrEmpty(code))
|
|
{
|
|
m_outputText.text = code;
|
|
Show();
|
|
}
|
|
else
|
|
{
|
|
Hide();
|
|
}
|
|
}
|
|
}
|
|
}
|