This commit is contained in:
kridoo
2025-11-17 16:24:39 +08:00
parent 6658500acb
commit fec7b90249
16 changed files with 4281 additions and 454 deletions

View File

@@ -447,7 +447,7 @@ public class VR2 : MonoBehaviour
var msgMemory = _receiveMemory.Slice(8, msgLength);
string msg = Encoding.UTF8.GetString(msgMemory.Span);
Debug.Log($"收到的消息:{msg}");
//Debug.Log($"收到的消息:{msg}");
if (_messageHandlers.TryGetValue(type, out var handler))
{
try