mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
Added page content
This commit is contained in:
parent
1259ef9396
commit
1a44f6ed38
@ -1,8 +1,30 @@
|
|||||||
# Deprecations
|
# Deprecations
|
||||||
|
|
||||||
Certain features of Unity Networking were removed from Mirror for various reasons.
|
Certain features of Unity Networking were removed from Mirror for various reasons.
|
||||||
|
|
||||||
This page will identify all removed features, the reason for removal, and possible alternatives.
|
This page will identify all removed features, the reason for removal, and possible alternatives.
|
||||||
|
|
||||||
- Couch Co-Op
|
## Match Namespace
|
||||||
-
|
|
||||||
|
As part of the Unity Services, this entire namespace was removed. It didn't work well to begin with, and was incredibly complex to be part of the core networking package. We expect this, along with other back-end services, will be provided through standalone apps that have integration to Mirror.
|
||||||
|
|
||||||
|
## Couch Co-Op
|
||||||
|
|
||||||
|
The core networking was greatly simplified by removing this low-hanging fruit. It was buggy, and too convoluted to be worth fixing.
|
||||||
|
|
||||||
|
## Network Transform
|
||||||
|
|
||||||
|
This component was significantly simplified so that it only syncs position and rotation. Rigidbody support was removed. We will create a new separate compontent for NetworkRigidbody that will be server authoritative with physics simulation and interpolation.
|
||||||
|
|
||||||
|
## Quality of Service Flags
|
||||||
|
|
||||||
|
In classic UNET, QoS Flags were used to determine how packets got to the remote end. For example, if you needed a packet to be prioritized in the queue, you would specify a high priority flag which the Unity LLAPI would then receive and deal appropriately. Unfortunately, this caused a lot of extra work for the transport layer and some of the QoS flags did not work as intended due to buggy or code that relied on too much magic.
|
||||||
|
|
||||||
|
In Mirror, QoS flags were replaced with a "Channels" system. This system paves the way for future Mirror improvements, so you can send data on different channels - for example, you could have all game activity on channel 0, while in-game text chat is sent on channel 1 and voice chat is sent on channel 2. In the future, it may be possible to assign a transport system per channel, allowing one to have a TCP transport for critical game network data on channel 0, while in-game text and voice chat is running on a UDP transport in parallel on channel 1. Some transports (such as Ignorance) also provide legacy compatibility for those attached to QoS flags.
|
||||||
|
|
||||||
|
The currently defined channels are:
|
||||||
|
|
||||||
|
- Channels.DefaultReliable = 0
|
||||||
|
- Channels.DefaultUnreliable = 1
|
||||||
|
|
||||||
|
Currently, Mirror using it's default TCP transport will always send everything over a reliable channel. There is no way to bypass this behaviour without using a third-party transport, since TCP is always reliable. Other transports may support other channel sending methods.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user