From f042d13dbdadc3a10e333fa60a2c6ca5c2f47a9d Mon Sep 17 00:00:00 2001 From: spatialfree Date: Sat, 27 Nov 2021 23:38:37 -0500 Subject: [PATCH] public server --- MonoNet.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MonoNet.cs b/MonoNet.cs index 93ff017..7070cd4 100644 --- a/MonoNet.cs +++ b/MonoNet.cs @@ -23,7 +23,7 @@ public class MonoNet { public void Start() { socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); string ip = "192.168.1.70"; - // ip = "139.177.201.219"; + ip = "139.177.201.219"; EndPoint serverEndPoint = new IPEndPoint(IPAddress.Parse(ip), 1234); socket.Connect(serverEndPoint); rData = new byte[bufferSize]; @@ -186,8 +186,8 @@ public class MonoNet { public Pose headset; public Pose offHand; public Pose mainHand; - public Sound voice; - public SoundInst voiceInst; // update position + // public Sound voice; + // public SoundInst voiceInst; // update position public Peer(int id) { this.id = id;