

It isn't the fastest, and it certainly "does everything for you". There is MonoNAT (which I already use for my game), a C# library in its heart, but the implementation isn't that hard. I am back to the old unity network again :/ On the other hand UNET is simply unusable so far. It will connect them locally if possible and uses NAT punch through if needed. RaKnet and the old network handled that just fine. The point of a matchmaking system is to connect player for me. That is the reason to use a match maker in the first place!

The point is I don't know if the connection users are in one LAN or not. And even if they have a server in New Zealand it will still cause a massive drop in latency for no benefits (except for Unity as you will need to pay for a not actually needed relay system). If I play with someone else in New Zealand it will still relay all the data to the US simply to get around the NAT. The LAN example was just to show how useless the new system is. A proper library that can connect people through NAT usually is able to recognize if this isn't needed in the first place. If not, is it possible to make my own with the Message system? (I already have a MasterServer)Ĭlick to expand.Sorry I didn't express myself clearly enough. Is there going to be NAT-punchthrough implementations? Is there going to be UPnP implementations? (Or are there any out there?) I already have a MasterServer set up that holds the hosts, and was wondering if the punchthrough would work with the message system in UNET? Or maybe a NAT Punchthrough implementation is coming, like with the old RakNet? I also looked up NAT Punchthrough (Or UDP Hole-punching), and figured that might be a good alternative, but less reliable. Are there going to be any UPnP implementation? I tried looking around for some C# implementations to use in my project, but I couldn't get them to work, probably because of my inferior knowledge to how C# works. Problem is, there's no implementation for it in Unity. I then went to forward my port for testing, then noticed Skype has ports forwarded automatically, and stumbled upon the feature of UPnP, and researched, and figured out it's pretty much what I need. The problem is that to get this to work, the host needs to port forward, which would deminish the players able to play by a lot. The game is a P2P, with one client as the server, or a host. I have recently been working with UNET, and started work on a project using it.
