fix:1、添加h5.2、修复bug

This commit is contained in:
2026-06-25 14:22:52 +08:00
parent d2741d39be
commit 6ff428bdf2
18 changed files with 130 additions and 79 deletions
@@ -112,7 +112,7 @@ namespace ChillConnect
{
uiInfo.packageName = "Arrow_game";
uiInfo.assetName = "com_arrow_game";
uiInfo.layerType = UILayerType.Popup;
uiInfo.layerType = UILayerType.Bottom;
uiInfo.isNeedOpenAnim = false;
uiInfo.isNeedCloseAnim = false;
uiInfo.isNeedUIMask = true;
+6
View File
@@ -4,6 +4,7 @@
using FGUI.ZM_H5_15;
using IgnoreOPS;
using SGModule.NetKit;
using UNSDK;
namespace ChillConnect
{
@@ -40,6 +41,11 @@ namespace ChillConnect
GameDispatcher.Instance.Dispatch(GameMsg.StopArrowTouch, true);
GameDispatcher.Instance.Dispatch(GameMsg.showBroadCast);
HallManager.Instance.SetCameraVisible(true);
SdkConfigMgr.Instance.Close();
}
@@ -11,6 +11,7 @@ using Newtonsoft.Json;
using SGModule.Net;
using SGModule.NetKit;
using UnityEngine;
using UNSDK;
using Random = UnityEngine.Random;
namespace ChillConnect
@@ -959,7 +960,7 @@ namespace ChillConnect
for (int j = 0; j < tickets[i]; j++)
{
makeupRdData data = new makeupRdData();
data.code = GameHelper.GenerateUniqueKey();
data.code = GameHelper.GenerateUniqueKey(vo, j);
data.coupon_mount = arr[i];
data.isClaimed = false;
makeupTaskData.rdData.Add(data);
@@ -1048,7 +1049,15 @@ namespace ChillConnect
ui.btn_contact_us.SetClick(() =>
{
GameHelper.OpenEmail();
// GameHelper.OpenEmail();
SDKOpenConfig openConfig = new SDKOpenConfig
{
normal = false,
url = vo.T_ShopURL
};
CtrlDispatcher.Instance.Dispatch(CtrlMsg.open_wb, openConfig);
CtrlCloseUI();
});
}
@@ -1,6 +1,7 @@
using FGUI.tixian;
using IgnoreOPS;
using UNSDK;
namespace ChillConnect
{
@@ -73,6 +74,13 @@ namespace ChillConnect
ui.btn_contact_us.SetClick(() =>
{
SDKOpenConfig openConfig = new SDKOpenConfig
{
normal = false,
url = ConfigSystem.GetConfig<CommonModel>().X_ShopURL
};
CtrlDispatcher.Instance.Dispatch(CtrlMsg.open_wb, openConfig);
CtrlCloseUI();
});
ui.btn_close1.SetClick(CtrlCloseUI);
@@ -12,6 +12,7 @@ using SGModule.Net;
using SGModule.NetKit;
using Spine.Unity;
using UnityEngine;
using UNSDK;
using Random = UnityEngine.Random;
namespace ChillConnect
@@ -484,7 +485,7 @@ namespace ChillConnect
for (int j = 0; j < tickets[i]; j++)
{
SaveingPotRdData data = new SaveingPotRdData();
data.code = GameHelper.GenerateUniqueKey();
data.code = GameHelper.GenerateUniqueKey1(vo,i);
data.coupon_mount = arr[i];
data.isClaimed = false;
makeupTaskData.rdData.Add(data);
@@ -575,7 +576,15 @@ namespace ChillConnect
ui.btn_contact_us.SetClick(() =>
{
GameHelper.OpenEmail();
// GameHelper.OpenEmail();
SDKOpenConfig openConfig = new SDKOpenConfig
{
normal = false,
url = vo.C_ShopURL
};
CtrlDispatcher.Instance.Dispatch(CtrlMsg.open_wb, openConfig);
CtrlCloseUI();
});
}