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

29 行
727 B

using System;
using UnityEngine;
namespace LobbyRelaySample.UI
{
/// <summary>
/// UI element that is displayed when the lobby is in a particular state (e.g. counting down, in-game).
/// </summary>
public class ShowWhenLobbyStateUI : UIPanelBase
{
[SerializeField]
LobbyState m_ShowThisWhen;
public void LobbyChanged(LobbyState lobbyState)
{
if (m_ShowThisWhen.HasFlag(lobbyState))
Show();
else
Hide();
}
public override void Start()
{
base.Start();
Manager.LocalLobby.LocalLobbyState.onChanged += LobbyChanged;
}
}
}