添加subchannel

zhangjiannan 2024-10-28 03:50:58 +08:00
parent e9041dbc07
commit 5c1c5cf335
1 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ namespace GameEditor.FrameTool
string sdkLodingUrl; string sdkLodingUrl;
string payUrl; string payUrl;
string channel; string channel;
//string subChannel; string subChannel;
string packageVersion; string packageVersion;
string defaultVersion; string defaultVersion;
@ -81,7 +81,7 @@ namespace GameEditor.FrameTool
sdkLodingUrl = version.GetInfo("sdkLodingUrl"); sdkLodingUrl = version.GetInfo("sdkLodingUrl");
payUrl = version.GetInfo("payUrl"); payUrl = version.GetInfo("payUrl");
channel = version.GetInfo("channel"); channel = version.GetInfo("channel");
//subChannel = version.GetInfo("subChannel"); subChannel = version.GetInfo("subChannel");
packageVersion = version.GetInfo("packageVersion"); packageVersion = version.GetInfo("packageVersion");
defaultVersion = version.GetInfo("version"); defaultVersion = version.GetInfo("version");
@ -147,7 +147,7 @@ namespace GameEditor.FrameTool
EditorGUILayout.EndVertical(); EditorGUILayout.EndVertical();
EditorGUILayout.BeginVertical(); EditorGUILayout.BeginVertical();
//subChannel = EditorGUILayout.TextField("SubChannel", subChannel); subChannel = EditorGUILayout.TextField("SubChannel", subChannel);
serverPathValue = (ServerPathType)EditorGUILayout.EnumPopup("选择服务器", serverPathValue); serverPathValue = (ServerPathType)EditorGUILayout.EnumPopup("选择服务器", serverPathValue);
serverPathType = serverPathValue.ToString(); serverPathType = serverPathValue.ToString();
ServerPathTypeValueAttribute pathInfo = ServerPathManager.Instance[serverPathValue]; ServerPathTypeValueAttribute pathInfo = ServerPathManager.Instance[serverPathValue];
@ -322,7 +322,7 @@ namespace GameEditor.FrameTool
version.SetInfo("sdkLodingUrl", sdkLodingUrl); version.SetInfo("sdkLodingUrl", sdkLodingUrl);
version.SetInfo("payUrl", payUrl); version.SetInfo("payUrl", payUrl);
version.SetInfo("channel", channel); version.SetInfo("channel", channel);
//version.SetInfo("subChannel", subChannel); version.SetInfo("subChannel", subChannel);
if (CheckPackageVersion()) if (CheckPackageVersion())
{ {