mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 11:00:32 +00:00
21 lines
1.1 KiB
Markdown
21 lines
1.1 KiB
Markdown
# Fallback Transport
|
|
|
|
The FallbackTransport can be used to work around transport platform limits.
|
|
|
|
For example, our Apathy transport is currently only available on Windows, Mac and Linux where as Telepathy is available on all Platforms. Apathy has significant performance improvements, and ideally we would want Mirror to use Apathy if on Windows/Mac/Linux and fall back to Telepathy otherwise.
|
|
|
|
This is what the FallbackTransport allows us to do.
|
|
|
|
Usage:
|
|
|
|
1. Add a gameobject with a NetworkManager to your scene if you have not done so
|
|
2. By default, Unity will add TelepathyTransport to your NetworkManager game object
|
|
3. Add a FallbackTransport component to the gameobject
|
|
4. Assign the FallbackTransport component in your NetworkManager's transport
|
|
5. Add a ApathyTransport component to the gameobject
|
|
6. Add both ApathyTransport and TelepathyTransport to the FallbackTransport's transport property.
|
|
|
|
Important: all fallback transport need to be binary compatible with each other. For example, it might happen that the server runs Apathy and a client connects to it with Telepathy.
|
|
|
|
![The Fallback Transport](Fallback.PNG)
|