Ver código fonte

配置版本

slambb 10 meses atrás
pai
commit
3d1cfa9dc2

+ 1 - 1
Assets/BowArrow/InfraredCamera/InfraredDemo.cs

@@ -103,7 +103,7 @@ public class InfraredDemo : JCUnityLib.ViewBase
         GUIStyle labelFont = new GUIStyle();
         labelFont.normal.textColor = new Color(1, 0.6f, 0.6f);
         labelFont.fontSize = Mathf.CeilToInt(Screen.height * 0.03f);
-        GUI.Label(new Rect(Screen.width / 100, Screen.height / 100, 100, 100), "game-20241216-1224-5-1", labelFont);
+        GUI.Label(new Rect(Screen.width / 100, Screen.height / 100, 100, 100), "game-20241217-1222-5-1", labelFont);
     }
 
     void Update()

+ 2 - 0
Assets/BowArrow/Scripts/Bluetooth/DevicesHolder.cs

@@ -49,6 +49,8 @@ public class DevicesHolder : MonoBehaviour
     /// <param name="deviceType"></param>
     public void SwitchDeviceByType(AimDeviceType deviceType) {
         bConnected = true;
+        //打开图标
+        SimulateMouseController.ins?.SetBleConnected(true);
         //切换后算连接成功
         PopupMgr.ins.ClearAllTip();
         //PopupMgr.ins.ShowTip(TextAutoLanguage2.GetTextByKey("BConnectTipSuccess"));

+ 1 - 1
Assets/BowArrow/Scripts/CommonConfig.cs

@@ -141,7 +141,7 @@ public class CommonConfig
     public static bool bSupportCoin { get; } = true; 
 
     //是否禁用蓝牙(目前是b端端口连接情况下设置)
-    public static bool bDisableBluetooth { get; } = false;
+    public static bool bDisableBluetooth { get; } = true;
 
     #endregion