admin管理员组文章数量:1345411
I am trying to create an autorative game server that communicates with UDP (C#, running in VSCode), and a game client (Unity).
The game server sends and receives packets just fine (checked with WireShark), and the client also sends packets as it should, but the problem begins when trying to receive packets in the unity client. I have tried two implementations, and for each a different thing happens - but both do not work as they should.
Blocking UDPClient.receive() (In the main thread and in a different one) → Straight up does not work. Non Blocking UDPClient.BeginReceive(callback) → Weird thing happens, I set a l log to print when ever a packet is received. Logs only start to appear after I stop the unity editor.
More information - I checked with WireShark and packets are sent properly. I checked the firewall and enabled unity inbound rules, also tried with firewall turned off (even though I am running both on localhost? so not sure if its needed) Has anyone encountered this problem? how do I solve it?
本文标签: cUnity receiving UDP packets does not workStack Overflow
版权声明:本文标题:c# - Unity receiving UDP packets does not work - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743780991a2537822.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论