添加山东济南槐荫晟芙桐商贸内外场景

This commit is contained in:
ZYT
2025-08-04 19:01:43 +08:00
parent a4413d0308
commit b00b920083
21 changed files with 18721 additions and 22 deletions

View File

@@ -24,6 +24,8 @@ public enum Place
Zhejiang_Shaoxing_Shengzhou_WuyueGuangchang= 12,
Hunan_Jishou_Qianzhou_Tianhong = 13,
Jilin_Tonghua_Liuhe = 14,
Shandong_Jinan_Huaiyin_ShengfutongShangmao = 15,
Shandong_Jinan_Huaiyin_ShengfutongShangmao_wai = -15,
}
public class GameLocal : MonoBehaviour
@@ -119,6 +121,8 @@ public class GameLocal : MonoBehaviour
authInfo.shop = 5;
if (place == Place.Shandong_Jining_Shangchang_nei)
authInfo.shop = 9;
if (place == Place.Shandong_Jinan_Huaiyin_ShengfutongShangmao_wai)
authInfo.shop = 15;
#endif
authInfo.gameId = 3;
string authJson = JsonUtility.ToJson(authInfo);

View File

@@ -73,7 +73,7 @@ namespace Common
public void Author()
{
//延迟请求
MonoSingleton<CoroutineTaskManager>.Instance.WaitSecondTodo(() =>
{
@@ -86,7 +86,7 @@ namespace Common
// 鉴权
GameLocal.Ins.RequestAuth((req, response) =>
{
RequestAuthCount++;
RequestAuthCount++;
if (response == null)
{
Debug.Log("鉴权失败1");
@@ -110,8 +110,8 @@ namespace Common
PanelState.StateChange(1);
return;
}
if ( info.code==200)
if (info.code == 200)
{
Debug.Log("鉴权成功");
_isAuth = true;
@@ -120,7 +120,7 @@ namespace Common
else if (MRNetworkManager.Ins.mode == NetworkManagerMode.ClientOnly)
{
WorldUIManager.Ins.Back();
}
}
});
}, 1);
}
@@ -132,6 +132,7 @@ namespace Common
progressText.text = "0%";
_progress = 0;
_isAuth = false;
//_isAuth = true;//修改为本地游戏
float curWaitTime = 0;
while (_progress<=90)
{