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.
30 lines
1.2 KiB
30 lines
1.2 KiB
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright company="Exit Games GmbH"/>
|
|
// <summary>Demo code for Photon Chat in Unity.</summary>
|
|
// <author>developer@exitgames.com</author>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
using Photon.Realtime;
|
|
|
|
|
|
namespace Photon.Chat.Demo
|
|
{
|
|
public static class AppSettingsExtensions
|
|
{
|
|
public static ChatAppSettings GetChatSettings(this AppSettings appSettings)
|
|
{
|
|
return new ChatAppSettings
|
|
{
|
|
AppIdChat = appSettings.AppIdChat,
|
|
AppVersion = appSettings.AppVersion,
|
|
FixedRegion = appSettings.IsBestRegion ? null : appSettings.FixedRegion,
|
|
NetworkLogging = appSettings.NetworkLogging,
|
|
Protocol = appSettings.Protocol,
|
|
EnableProtocolFallback = appSettings.EnableProtocolFallback,
|
|
Server = appSettings.IsDefaultNameServer ? null : appSettings.Server,
|
|
Port = (ushort)appSettings.Port
|
|
};
|
|
}
|
|
}
|
|
} |