From e79923fa0161366df28fd4dfd48c4f7917c3dbd5 Mon Sep 17 00:00:00 2001 From: chenxiangxue <910695411@qq.com> Date: Tue, 9 Jul 2024 15:40:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=E5=90=AF=E5=8A=A8=E5=8F=82?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BulkCargo_UnityProject/Assets/Scripts/cxx/CallForTest.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/BulkCargo_UnityProject/Assets/Scripts/cxx/CallForTest.cs b/BulkCargo_UnityProject/Assets/Scripts/cxx/CallForTest.cs index 4fff31b4..bdfa1e88 100644 --- a/BulkCargo_UnityProject/Assets/Scripts/cxx/CallForTest.cs +++ b/BulkCargo_UnityProject/Assets/Scripts/cxx/CallForTest.cs @@ -74,16 +74,19 @@ public class CallForTest : MonoBehaviour if (!string.IsNullOrEmpty(code)) { customCode = code.Replace("code=", ""); + Debug.Log("启动参数关区:" + customCode); } if (!string.IsNullOrEmpty(enterprise_code)) { - MONITOR_ID = enterprise_code.Replace("enterprise_code=", ""); + MONITOR_ID = enterprise_code.Replace("enterprise_code=", ""); + Debug.Log("启动参数企业:" + MONITOR_ID); } if (!string.IsNullOrEmpty(config_value)) { - ServerIP = config_value.Replace("config_value=", ""); + ServerIP = config_value.Replace("config_value=", ""); + Debug.Log("启动参数服务器:" + ServerIP); }