We are experimenting with Unity Transport to distribute different types of data among clients, one of such types would be a Texture2D, we can extract the raw bytes of the Texture to send it through the Network but it’s much bigger than allowed.
I can’t find a guide on how to use the FragmentationPipeline correctly, I can only guess some things from the documentation but I’ve yet to make a working demo. Could you please point me in the right direction or show me an example of the correct implementation? Everything else is working great and seems pretty straight forward.
Thank you for the suggestion! however the Textures and data I’m trying to transfer are generated in real time and I can’t have them previously stored on a web server.
Is Unity Transport not suited for such transfers? I would still like to learn to use the FragmentationPipeline.
In my opinion , Unity Transparent is a good option for making a real-time game,but it depends on many things such as your game and your code.
you want to send and receive the texture in real time, what is the size of each texture in byte ?
And how many concurrent users are going to send and receive these information at the same time?
The size is around 1,808,000 bytes and it would be enough to send it to one client but I want to send it as often as possible because it’s updated constantly in real time
Thank you, I’m currently implementing my own fragmentation for big messages and I will use copyblock as you suggested until I can find more information or documentation on the FragmentationPipeline.