Search Unity

Official UNet Deprecation Thread

Discussion in 'UNet' started by BHouse, Aug 2, 2018.

  1. dansitnick

    dansitnick

    Joined:
    Jun 9, 2016
    Posts:
    14
    How would this affect LAN only implementations?

    I'm tasked with creating a LAN networking backend for future projects, which is set to be complete in approximately 6 months. Most of the backend is complete, running through UNET, however the idea is that future software utilizes this backend, so I imagine it would need to be converted to the new system.

    However, it would be an absolute dealbreaker if this were not able to be run in a closed-off network. I understand the long term benefits of switching from P2P, but I need to know if this is a recommendation or a requirement.

    Thanks!
     
    willthomas1979 and VRTracker like this.
  2. JTovey

    JTovey

    Unity Technologies

    Joined:
    Oct 30, 2018
    Posts:
    35
    Hi dansitnick,

    LAN networking is still an option in the new Networking library, so there should be no need to fear on that front, though it might require some client-server management from yourself.

    If you have any further questions please let us know.
     
  3. Lelon

    Lelon

    Joined:
    May 24, 2015
    Posts:
    79
    Sorry if this has been mentioned previously, but there is a fundamental question that concerns me, will we be able to host our own dedicated servers?
     
  4. JTovey

    JTovey

    Unity Technologies

    Joined:
    Oct 30, 2018
    Posts:
    35
    Hi Lelon,

    Yes, this is a fundamental part of online gaming, so you will still be able to host your own dedicated servers.

    If you have any other questions please let us know.
     
  5. Clonkex

    Clonkex

    Joined:
    Jul 31, 2012
    Posts:
    31
    Ok I'm incredibly confused and more than a little frustrated. I tried to start working on a simple test setup for the multiplayer system I want to use in my game. As we all know multiplayer games can be very complicated so I wanted to keep it super simple. Rather than try to integrate the oddly specific HLAPI functions for part of the game and end up still having to manually handle other parts, I decided it would be easier to control everything myself. So I start looking for the simplest way to establish a connection and send reliable messages. That's all I want, nothing excessive, just messages back and forth.

    I scan down the page until I see "Send and receive network messages". Bingo! That text isn't a link (sigh) so I go searching for which part of the manual explains how to do that. Ok, I find "Actions and Communication > Network Messages". Sounds hopeful. I start reading that page, and.... ugh, wtf. Why do I have to extend a class just to send a message? Why is this not just a function I can call? I don't understand. Maybe if I keep reading... nope, it just gets more complicated. Well that's stupid. So I wonder if maybe I'm in the wrong place. I keep looking and find "Using the Transport Layer API > NetworkReader and NetworkWriter serializers". I'm less hopeful this time but start reading anyway. Ok, this sounds like what I want. I can create a NetworkWriter, feed it some variables, it serialises them and I send the message. Hey, maybe we're getting somewhere now. It still seems unnecessarily awkward but that's ok, I can wrap it in a function to simplify it. I notice that the example code uses the NetworkServerSimple class, so I go find it (manually, because it's not linked...) in the script reference. And.... wut.

    At this point I'm stuck. Both NetworkServer and NetworkServerSimple show as Obsolete (wtf? what does that even mean? Is it the same as deprecated? And WHY IS IT OBSOLETE, if the manual says to use it???), and neither of the references actually seems to explain how to use the class. NetworkServerSimple doesn't show ANYTHING. No methods, variables, nothing.

    What am I supposed to do here? The documentation seems to be conflicting and there's a severe lack of information for beginners. Can someone clear this up for me?
     
  6. Lelon

    Lelon

    Joined:
    May 24, 2015
    Posts:
    79
    Thanks for the clarification, this brings my next question, will there be a fee associated with hosting our own server? like the nonsense Photon does?
     
  7. goldbug

    goldbug

    Joined:
    Oct 12, 2011
    Posts:
    768
    All of the networking classes in the documentation are deprecated. As of this writing there is no replacement from Unity. I wish unity would put a big warning in their tutorials and documentation about this, because I see other people have the same confusion.

    Your options are:
    1) Stick with UNET, it will be turned into a package soon and will be supported for a couple years (last I heard). Having tons of Obsolete warnings is no fun though.
    2) Switch to Mirror, it is a community fork of HLAPI. It is very similar to HLAPI so the transition is quite simple, and it has a large growing discord community behind it.
    3) Switch to other options such as MLAPI, Photon, etc... This might take a bit more work, but those seem to be solid alternatives as well.

    About send a message, this is how you normally send a message from the client to the server in both HLAPI and Mirror:

    Code (CSharp):
    1.  
    2. class Player:  NetworkBehaviour
    3. {
    4.      [Command]
    5.      public void CmdMove(int x, int y)
    6.      {
    7.          // this gets executed in the server,  the client just
    8.          // sent us a message to move this player to position x,y
    9.      }
    10.  
    11.      public void Update()
    12.      {
    13.          //  this gets executed in the client
    14.          if (GotInput() )
    15.          {
    16.               // this is the magic,  this gets turned into
    17.               // a very compact message and sent
    18.               // across the network to the server
    19.               // it does not wait for the server
    20.               CmdMove(newx,  newy);
    21.          }
    22.      }
    23. }
    24.  
    Use [ClientRpc] instead for sending messages from the server to the clients.

    Follow the KISS principle whenever possible.
     
    Last edited: Dec 18, 2018
  8. larus

    larus

    Unity Technologies

    Joined:
    Oct 12, 2007
    Posts:
    280
    Only cost/fees will be when you host using Multiplay infrastructure, if you host yourself there are no costs involved from Unity. At least I never heard anyone mention this and we did not do that with the UNet implementation either (the only cost was involved in using the relay server).
     
  9. larus

    larus

    Unity Technologies

    Joined:
    Oct 12, 2007
    Posts:
    280
    As far as I understood it, the manual part of the docs wasn't updated yet as the 2018.3 final elease wasn't live yet, but it is now so we should have a message about the deprecation. I'll look into that.

    Regarding what to do now, see the blog post about the deprecation with the outlined plans we have. Both the high level and transport are now deprecated. If you're starting right now you could use only the unet transport and switch to the new transport when it's more mature (it's in alpha level state atm). You mentioned only needing basic stuff, but packet pipeline support with reliability is coming soon (probably won't make it before the christmas holidays hit though). For an example of how to do something with only the transport, see the Using the Transport Layer API section in the manual. Or you could use some basic functionality in the high level API like goldbug suggested.

    If you want to get rid of the warnings, which you'll see when using either the unet transport or hlapi, you can wrap the netcode classes or relevant code snippets in pragma warning disable statements for warning 618.
     
  10. Clonkex

    Clonkex

    Joined:
    Jul 31, 2012
    Posts:
    31
    Ok thanks, so Unity is actually being as dumb as it seemed. Right. Not very helpful, Unity, making an already-difficult topic even harder...

    I think I'll look at Mirror. I've stared at your example for a little while and I think I am starting to understand how HLAPI is intended to be used. The Unity documentation does a very poor job of explaining this. I'm at work right now so I can't test whether I have indeed understood how HLAPI/Mirror works but I think I'm starting to get it.

    So let's see if I have my head around this yet. Imagine I have a timer object in my game world. The timer has a plus and a minus button, a screen to show the current time and a screen toggle button. The timer always counts up every second, but can be changed by any player by clicking the +/- buttons. The screen (the in-world UI) can be turned on and off by clicking the screen toggle button. This is the pseudo-code script I would attach to the timer gameobject:

    Code (CSharp):
    1.  
    2. class Timer : NetworkBehaviour
    3. {
    4.     [SyncVar]
    5.     int currentTime;
    6.  
    7.     GameObject inworldUIObject;
    8.  
    9.     void Awake()
    10.     {
    11.         inworldUIObject = gameObject.transform.GetChild(0).gameobject;
    12.     }
    13.  
    14.     void Start()
    15.     {
    16.         setInterval(function() {    //this is JS syntax, idk how to do this in C# yet - it just runs the function every 1000ms
    17.             currentTime++;
    18.         }, 1000);
    19.     }
    20.  
    21.     void Update()
    22.     {
    23.         if(playererHasClickedPlusButton)
    24.         {
    25.             clickPlusButton();
    26.         }
    27.         if(playererHasClickedMinusButton)
    28.         {
    29.             clickMinusButton();
    30.         }
    31.         if(playererHasClickedScreenToggleButton)
    32.         {
    33.             clickScreenToggleButton();
    34.         }
    35.         //update in-world UI to show currentTime
    36.     }
    37.  
    38.     [Command]
    39.     void clickPlusButton()
    40.     {
    41.         currentTime++;
    42.     }
    43.  
    44.     [Command]
    45.     void clickMinusButton()
    46.     {
    47.         currentTime--;
    48.     }
    49.  
    50.     [Command]
    51.     void clickScreenToggleButton()
    52.     {
    53.         Renderer renderer = GameObject.GetComponent<Renderer>();
    54.         if(renderer.enabled)
    55.         {
    56.             renderer.enabled = false;
    57.         } else {
    58.             renderer.enabled = true;
    59.         }
    60.     }
    61. }
    62.  
    Some questions I still have:

    - If I run this as a dedicated server, the in-world UI for the timer gameobject would be updated unnecessarily (since we don't need to be updating the rendering on a dedicated server). How would I avoid that?
    - Imagine I have two players and a dedicated server (or three players, one being a server, doesn't matter). If one of the players is a long way away from the timer (or any networked object) and I want the server to tell only that client to despawn that object, how would I do that? And then how would I respawn it when the server determines that the player has come back within range of the object?
    - Would the state of the renderer component be synced when the screen toggle button is clicked? If not, how would I do that?

    I'm also a big fan of KISS. I actually almost said that in my last post but decided it wasn't relevant. The problem is that I foolishly assumed Unity wouldn't add a heap of unnecessary, fairly niche "features" to the HLAPI; things like NetworkLobbyManager, NetworkManagerHUD and even NetworkServerSimple. The only thing that did was add extra confusion (which parts do I need and why do I need them?) and cause me to believe HLAPI was the exact opposite of simple. I now realise those classes are intended for convenience and aren't necessary. I read through the notable changes of Mirror from HLAPI and was quite relieved to see a lot of things being removed and NetworkServer made static, which simplifies things a lot.

    But of course I'm still very confused by how to actually use NetworkManager, NetworkServer and NetworkClient. For instance, the documentation for NetworkServer.AddPlayerForConnection has some example code that includes this line:

    Code (CSharp):
    1. NetworkServer.RegisterHandler(MsgType.AddPlayer, OnAddPlayerMessage);
    There's two reasons this is confusing. First, why don't I see RegisterHandler in NetworkServer's documentation? Second, what is MsgType, how do I use it and why is its documentation blank?? I'm really struggling here.
     
  11. goldbug

    goldbug

    Joined:
    Oct 12, 2011
    Posts:
    768
    @Clonkex your code is getting close to what you need. But this becoming offtopic. If I explained it here I would take over the thread. I suggest you join us in Mirror discord and ask for help, there are a lot of people there ready to help.
     
    Last edited: Dec 18, 2018
    Clonkex likes this.
  12. Clonkex

    Clonkex

    Joined:
    Jul 31, 2012
    Posts:
    31
    @goldbug Fair enough. I since found quill18creates' series of tutorial videos. I've gone through the first one and even though it was super basic he's explaining things extremely clearly and I believe after I've gone through the rest I'll have a solid understand of UNet. Fingers crossed. After that I'll jump in on the Mirror discord if I still need help. Thanks :)
     
    goldbug likes this.
  13. forcepusher

    forcepusher

    Joined:
    Jun 25, 2012
    Posts:
    227
    How many server app instances we can host on a single VM while using official Unity's server hosting services ?
     
  14. JTovey

    JTovey

    Unity Technologies

    Joined:
    Oct 30, 2018
    Posts:
    35
    Hi @forcepusher

    This depends on the resource usage of the game server instance, if you know these then we can advise on how many can run on one machine.
     
  15. forcepusher

    forcepusher

    Joined:
    Jun 25, 2012
    Posts:
    227
    Hello Jack. This actually means that we will have this option while using Unity's Multiplay infrastructure ?
    This is great. Looking forward to switch when it's ready for production.
     
  16. MCoburn

    MCoburn

    Joined:
    Feb 27, 2014
    Posts:
    71
    Why not just rent a dedicated server (you can get cheapo ones from Vultr/Linode for less than a fiver for a month) and manage your own resources like CPU usage, RAM and Disk rather than let Unity Tech host it for you?

    Have you considered what would happen to your game server instances if Unity's server stack randomly derps, suffers data loss and extended downtime? Unless UT is promising a 99.99% instance uptime guarantee I'm gonna say it's a little sketchy.

    Rather than UT host your game, it's not that hard to just build a Linux headless executable and make a script that bootstraps everything and gets the game ready for action. If I can do it within an day, I'm sure you can do it too.
     
  17. CallMeSpam

    CallMeSpam

    Joined:
    Feb 10, 2018
    Posts:
    19
  18. MCoburn

    MCoburn

    Joined:
    Feb 27, 2014
    Posts:
    71
    If I was to take a guess, they've probably closed-sourced the Transport Layer like old Unity LLAPI was and broken their OSS transport layer promise.

    Pardon my sarcasm.
     
  19. CallMeSpam

    CallMeSpam

    Joined:
    Feb 10, 2018
    Posts:
    19
    My netcode knowledge is weak at the moment so I could easily be missing something, but the Transport layer code and the FPS sample network code look like independent efforts. This makes me wonder if they are have decided which path to take.
     
  20. larus

    larus

    Unity Technologies

    Joined:
    Oct 12, 2007
    Posts:
    280
    An update with pipeline support including reliability and simulation pipeline implementations was supposed to go out before christmas, but unfortunately did not make it. This should come in early january then.

    The FPS sample started way before the new transport project started. It is actually is using this network transport though, but it required very little as it implemented everything it required on top of the transport (it used very basic functionality from UNet initially). When the transport is more mature we'll start adding netcode like the FPS sample is using in more generic form.
     
    Karasu416 likes this.
  21. larus

    larus

    Unity Technologies

    Joined:
    Oct 12, 2007
    Posts:
    280
    You can certainly do that, and nothing in the transport or runtime side prevents you from doing everything yourself. Using the hosting solution allows you to just not need to think about how to do hosting on your own but also give you more advanced features like automatic scaling, health monitoring and support (24/7 coverage), and so on (see more on the Multiplay site). Big games like PUBG utilize this service for those reasons.
     
  22. CallMeSpam

    CallMeSpam

    Joined:
    Feb 10, 2018
    Posts:
    19
    Thanks for the clarification! This explains why there was raw sockets code in the FPS example.
     
  23. landon912

    landon912

    Joined:
    Nov 8, 2011
    Posts:
    1,579
    I'm sending you a PM that I think will help you out with this since it's off topic. Anyone else, feel free to PM me if you need better examples than the awful documentation.
     
  24. LukeDawn

    LukeDawn

    Joined:
    Nov 10, 2016
    Posts:
    404
    Not waiting for Unity to build and deprecate another networking framework, so we've moved to C# ENet. It's crisp and clean and wins across the board on the network library benchmarks.
     
    Vincenzo and Lelon like this.
  25. DuendeBrek

    DuendeBrek

    Joined:
    Aug 30, 2018
    Posts:
    2
    Hi!
    Im not reading and looking for the answer to question I will ask in a second everywhere, so please don't hate me if that was already answered.

    So - based on graph of old and new networking timeline support, I can assume that "New Unity Multiplayer Features" should already be there. I done some searching, and what I found is that all we have for a moment are 2 features which are in alpha, and you need to sign up for them. Assuming that its right, when can we expect to see "New Unity Multiplayer Features" aka. Unet 2.0 be released in at least beta form, where you could already learn new Unet by documentation and some Unity Tutorials? Are there any ETA's?

    Im currently really stuck at choosing Multiplayer Solution. I find Forge a bit hard to start with, and based on forum posts Photon to be a bit hard to make it work with ~20+ players. I can assume that Unity "Unet 2.0" is aiming to be even "better" then 2 solutions I mentioned so answer for this question is quite important for me.

    Thanks for reading,
    Have a good day!
     
    Justice0Juic3 likes this.
  26. Justice0Juic3

    Justice0Juic3

    Joined:
    Apr 29, 2013
    Posts:
    188
    I'm also stuck in this tunnel. I feel like giving up now because I don't know what networking solution to use while I have one hell of an idea to create in Unity3D. I just don't know what I'm doing - multiplayer gamedev is my life
     
  27. JTovey

    JTovey

    Unity Technologies

    Joined:
    Oct 30, 2018
    Posts:
    35
    Hi Justice and Duende,

    This networking library is intended for low-level interactions, it would be worth investigating MLAPI or the community fork of HLAPI if you want higher level implementations. If you want to use the new library and have feature requests that you would like implemented, then please let us know and I can place the feature requests internally.
     
  28. mischa2k

    mischa2k

    Joined:
    Sep 4, 2015
    Posts:
    4,347
    People keep asking the same question every day here, maybe this helps:
    • The community fork of HLAPI is called Mirror. Try Mirror if you don't want to move away from UNET architecture.
    • Try MLAPI if you want a different architecture / if UNET was too high level for your needs (hence 'Mid Level API')
     
  29. dadude123

    dadude123

    Joined:
    Feb 26, 2014
    Posts:
    789
    If you guys are looking for an alternative to the new system... maybe I can mention what we came up with as well.
    We've completely dropped UNET and developed our own networking library/system for our game.

    Major features:
    - It's somewhat similar to UNET in that it provides automatic syncing of fields/properties.
    - It's a complete custom high-level (HLAPI) and low-level (LLAPI) networking system. It uses LiteNetLib as transport, but that can be swapped out very easily for anything else (maybe tcp, or your own thing, or even unity's new upcoming LLAPI)
    - Supports completely "split" objects, explained in more detail below.
    - Better performance (much less cpu impact, no allocations).
    - Does not modify assemblies, generates source-code instead (partial classes and managers).
    - Supports RPCs (in both directions, so in UNET terms [Rpc] and [ClientRpc]), and also supports returning results.
    - Supports singleton/static objects! For stuff that is not bound to an object, like "static class LoginApi { ... }"
    - Server autoritative architecture by default, but flexible to allow clients to modify things as well. It's also possible to have peer to peer alongside a classical server (think about it: having movement and spellcasting stuff checked and replicated by the server; while having less important stuff like emotes based on peer to peer to save traffic)


    Regarding the mentioned "split" objects:
    With UNET we were forced to have one class that is used on both server and client.
    Obviously that required a lot of if(isServer), if(isClient), if(isHost), ....
    That naturally always leads to somewhat confusing code which alone is already bad.
    But it is also a security issue: people are able to easily see how certain calculations are done on the server (using that information to find exploits or cheat).

    With our system you can easily define an object, and have the network system generate a server and client version for it! (example of the generated server-base, just inherit from it and literally everything is done automatically)
    The server file then has a property for each field which does the change-tracking, and on the client a network manager is generated that receives the updates from the server and sets the fields/properties (optionally also calling change callbacks)....

    Of course, it's also possible to have classical "unified" objects (which, when used, makes the system conceptually very similar to UNET)


    All in all it's an even more comfortable experience to use than UNET was while at the same time having more features.
    At first we were hesitant to build our own system but the work totally paid off.


    Currently we're toying with the idea of maybe making it public, but there are no concrete plans yet.
    It all depends on if people are interested.
    Depending on the reactions to this post, I'll write a more in-depth overview of what it does and it works in a separate thread.
     
  30. Justice0Juic3

    Justice0Juic3

    Joined:
    Apr 29, 2013
    Posts:
    188
    Hey thanks for the reply! I look forward to the new UNet later on though. I'm now learning Forge step by step.
    I have one question in mind, maybe sounds dumb but will there be an option to convert old UNet code to UNet 2?
    Let's say I have an old project an import it in the newer Unity3D, get it? :p
     
  31. JTovey

    JTovey

    Unity Technologies

    Joined:
    Oct 30, 2018
    Posts:
    35
    Hi Justice,

    You should be able to replace the older unet code with the new library, however, it might not be as simple as changing the library over.
     
  32. Justice0Juic3

    Justice0Juic3

    Joined:
    Apr 29, 2013
    Posts:
    188
    Alright thanks. "however" I'm just getting started with Forge as a replacement for now. Excited to see when UNet 2 is going live!
     
  33. Barphill

    Barphill

    Joined:
    Dec 28, 2018
    Posts:
    1
    Hello!
    Will there be Unet 2 in Unity 2019.1?
    Thanks!
     
  34. dadude123

    dadude123

    Joined:
    Feb 26, 2014
    Posts:
    789
    No.
    And there won't be anything like unet again (most likely, or if there will be, then it will take years).
    They're developing a new low-level network thing, based on ECS.
     
  35. segant

    segant

    Joined:
    May 3, 2017
    Posts:
    196
    When is it going to be released?
     
  36. GamerRob

    GamerRob

    Joined:
    Oct 7, 2018
    Posts:
    19
    Unity.... you have said that the new networking engine would be available end of 2018.... your site still says this... what is the real date now?????
     
  37. NoDumbQuestion

    NoDumbQuestion

    Joined:
    Nov 10, 2017
    Posts:
    186
    They already release it. It was a low level udp network.
    You can see FPS sample already using it and build somewhat mid-high level network on top of it.

    You should wait till the end of Jan or Feb to hear about new High Level Api network that will replace Unet

    Be patient. Networking is an extreme hard topic. Would be another year until Unet-2 can be stable
     
  38. Zullar

    Zullar

    Joined:
    May 21, 2013
    Posts:
    651
    This seems like the right decision. Scrapping UNET and starting over seems like a good move.

    I've switched from UNET to Steam and found it to work well. The Steam API is LL and you just send byte arrays... but that's all you really need!
     
    Joe-Censored likes this.
  39. MCoburn

    MCoburn

    Joined:
    Feb 27, 2014
    Posts:
    71
    Please confirm your facts. Where did you hear that there's a new HLAPI coming out from Unity Tech? There has been no announcements, as far to my knowledge, of a new HLAPI. You might be thinking how the high-level calls talk to the LLAPI, but from my understanding you have to write that yourself - there is nothing out the box like old UNET had (NetworkManager, NetworkBehaviour, etc).
     
    Last edited: Jan 6, 2019
  40. NoDumbQuestion

    NoDumbQuestion

    Joined:
    Nov 10, 2017
    Posts:
    186
    I read it from another post. They say just wait till 2019 Q1. I figure they mean by the end of Jan or Feb. Any later date would just look bad for Unity Team if they did not update anything
     
  41. MCoburn

    MCoburn

    Joined:
    Feb 27, 2014
    Posts:
    71
    Mind linking me to that post?
     
  42. NoDumbQuestion

    NoDumbQuestion

    Joined:
    Nov 10, 2017
    Posts:
    186
    From this post and some other posts from @jackt_unity.
    Hum my bad. No HLAPI gonna come out. I guess new library only work with new Hybrid Entity or Pure ECS as Unity is heading this way. As why the delay with new library, I can only guess they have trouble make it simple for people to use.
     
  43. JTovey

    JTovey

    Unity Technologies

    Joined:
    Oct 30, 2018
    Posts:
    35
    Hi there,

    To clarify, there are no announced plans for a new HLAPI as yet, though if you need this form of networking API, then using the community Fork of HLAPI, Mirror, which can be found here: https://forum.unity.com/threads/mirror-networking-for-unity-unet-replacement.425437/

    If you have any other questions, just let us know.
     
    MrG and goldbug like this.
  44. Kylotan

    Kylotan

    Joined:
    Feb 17, 2011
    Posts:
    212
    Just to be clear, is the HLAPI gone from 2018.3, or still merely deprecated?

    The blog post here says "The HLAPI and LLAPI will no longer ship with Unity after 2018.4"
    But the manual here says "Removed in version 2018.3.0", i.e. 2 minor versions sooner than we were told to expect.
     
  45. ishwara_bhat

    ishwara_bhat

    Joined:
    Oct 18, 2018
    Posts:
    11
    I am just starting a from-the-scratch multi-player prototype which is to be finished within 4 months. Later, it will continue into production. Please suggest what framework, libraries how-to guides to use for the same. I am currently on Unity 2018.3. Should I just proceed with network manager, and other components based multi-player implementation?
    Please suggest.
    Thanks!
     
  46. JTovey

    JTovey

    Unity Technologies

    Joined:
    Oct 30, 2018
    Posts:
    35
    Hi Ishwara,

    That depends a lot on what you want to do, and how much time you want to spend working on the netcode. As the new Network Library is a Low Level API, you will need to write a lot of the high level code yourself, and unfortunately, because it is still in an alpha state, we do not have any How-to guides on using it, though these are in the pipeline once more of the code is in its final state.

    If you want to have use a more high level API then you can use either MLAPI or the community fork of HLAPI, Mirror, both of which you can find information on here:

    MLAPI: https://forum.unity.com/threads/mlapi-hlapi-replacement.511277/
    Mirror: https://forum.unity.com/threads/mirror-networking-for-unity-unet-replacement.425437/

    I hope that this help answer your question, and if you have any others, please ask them here.
     
    MrG and goldbug like this.
  47. JTovey

    JTovey

    Unity Technologies

    Joined:
    Oct 30, 2018
    Posts:
    35
    Hi Kylotan,

    2018.3 is only 1 minor version early, however, I can appreciate why this is annoying. The plan is for the new library to replace LLAPI, which was not stable or reliable, however, this is still in alpha, so it is still being actively worked on (this does mean that if you have features you would like to see worked into it, you can request them and they might be added).

    While HLAPI might be depreciated in it's usual form, it is far from dead, you can still access the Mirror Fork (https://forum.unity.com/threads/mirror-networking-for-unity-unet-replacement.425437/) which is actively being used by the community and is designed to be very usable.
     
    Joe-Censored, MrG and goldbug like this.
  48. hippocoder

    hippocoder

    Digital Ape

    Joined:
    Apr 11, 2010
    Posts:
    29,723
    I think the bigger problem was even having LLAPI and HLAPI as a concept. It should just be one API and examples on how to use it to achieve a goal, so there's only one set of docs to do, one set of support, and one set of knowledge growing on forums / stack overflow / etc... networking is complicated but Unity's prior handling of it made it a lot worse.

    Would also appreciate having UNet removed from the manual once it's a package, it's absurdly confusing for a beginner.
     
    MadeFromPolygons likes this.
  49. goldbug

    goldbug

    Joined:
    Oct 12, 2011
    Posts:
    768
    I think it makes sense to have them as separate concepts, especially because you can swap out either one of them and keep the other.

    Heck, once Unity's new transport gets in shape, I would expect Mirror to work with it too!
     
    JTovey and MrG like this.
  50. Kylotan

    Kylotan

    Joined:
    Feb 17, 2011
    Posts:
    212
    Being gone from 2018.3 is 2 minor versions before "after 2018.4". If you say something is gone after 2018.4, the implication is that it exists in 2018.3 and 2018.4, but not after that.

    So you're confirming that you actually removed the current networking solution ahead of schedule, despite no similar replacement being ready? And that all we have to work with is the alpha low level API that is barely more than a wrapper around a bare socket? That's pretty poor treatment of paying customers.

    If you want to hear feature requests, how about you replace the high level API too? Give us some actual functionality. Over 600 lines of code to implement a trivial Ping sample is embarrassing for you and annoying for us.

    Yes, they did a great job of fixing up much of the abandoned code, but it's not a drop-in replacement if one is using unreliable transport. There appears to be another 3rd party library to tack on to fix that (https://github.com/SoftwareGuy/Ignorance), which may or may not replicate everything needed from the LLAPI, but who knows? It's implemented in terms of yet another library (https://github.com/nxrighthere/ENet-CSharp). So if I do all that and something doesn't work, that's 3 separate places I need to look to find out why. All this because Unity hasn't taken its responsibilities seriously regarding providing a usable networking API.
     
    Last edited: Jan 8, 2019
    babaqalex, MadeFromPolygons and e199 like this.