添加河南新郑双湖大道和南京栖霞尧化门金地外两个场景

This commit is contained in:
ZYT
2025-08-19 15:26:26 +08:00
parent 494ac2c093
commit ec5bb61e76
30 changed files with 31634 additions and 3 deletions

View File

@@ -26,6 +26,9 @@ public enum Place
Jilin_Tonghua_Liuhe = 14,
Shandong_Jinan_Huaiyin_ShengfutongShangmao = 15,
Shandong_Jinan_Huaiyin_ShengfutongShangmao_wai = -15,
Henan_Xinzheng_Shuanghudadao_Longhujinyicheng = 16,
Nanjing_Qixia_Yaohuamen_Jindiguangchang = 17,
Nanjing_Qixia_Yaohuamen_Jindiguangchang_nei = -17,
}
public class GameLocal : MonoBehaviour
@@ -100,7 +103,7 @@ public class GameLocal : MonoBehaviour
/// </summary>
public void RequestAuth(Action<HTTPRequest, HTTPResponse> cb = null)
{
string url = "https://startcount-bgovpxyjzl.cn-hangzhou.fcapp.run";
string url = "http://www.pineappletech.cn/startcount";
HTTPRequest request = new HTTPRequest(new Uri(url), HTTPMethods.Post, (req, response) =>
{
if (response != null)
@@ -123,6 +126,8 @@ public class GameLocal : MonoBehaviour
authInfo.shop = 9;
if (place == Place.Shandong_Jinan_Huaiyin_ShengfutongShangmao_wai)
authInfo.shop = 15;
if (place == Place.Nanjing_Qixia_Yaohuamen_Jindiguangchang_nei)
authInfo.shop = 17;
#endif
authInfo.gameId = 3;
string authJson = JsonUtility.ToJson(authInfo);