您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

53 行
1.4 KiB

using System;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
using UnityEngine.Events;
namespace LobbyRelaySample.UI
{
/// <summary>
/// Controls an entry in the join menu's list of lobbies, acting as a clickable button as well as displaying info about the lobby.
/// </summary>
public class LobbyEntryUI : MonoBehaviour
{
[SerializeField]
TMP_Text lobbyNameText;
[SerializeField]
TMP_Text lobbyCountText;
/// <summary>
/// Subscribed to on instantiation to pass our lobby data back
/// </summary>
public UnityEvent<LocalLobby> onLobbyPressed;
LocalLobby m_Lobby;
/// <summary>
/// UI CallBack
/// </summary>
public void OnLobbyClicked()
{
onLobbyPressed.Invoke(m_Lobby);
}
public void SetLobby(LocalLobby lobby)
{
m_Lobby = lobby;
SetLobbyname(m_Lobby.LobbyName.Value);
SetLobbyCount(m_Lobby.LocalPlayers);
m_Lobby.LobbyName.onChanged += SetLobbyname;
m_Lobby.onUserListChanged += SetLobbyCount;
}
void SetLobbyname(string lobbyName)
{
lobbyNameText.SetText(m_Lobby.LobbyName.Value);
}
void SetLobbyCount(Dictionary<string, LocalPlayer> userList)
{
lobbyCountText.SetText($"{userList.Count}/{m_Lobby.MaxPlayerCount.Value}");
}
}
}