Fix bullets in Multiplex doc

This commit is contained in:
Paul Pacheco 2019-03-11 18:16:24 -05:00 committed by GitHub
parent f7589266e1
commit b9c5aefcc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,13 +6,13 @@ A prime use case for the MultiplexTransport is having a server that listens to b
To use the MultiplexTransport follow these steps:
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 GameObject
3) Add a MultiplexTransport component to the gameobject
4) Assign the MultiplexTransport component in your NetworkManager's transport
5) Add a WebsocketTransport component to the gameobject
6) Add the TelepathyTransport component to the MultiplexTransport as the first transport
7) Add the WebsocketTransport component to the MultiplexTransport as the second transport
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 GameObject
3. Add a MultiplexTransport component to the gameobject
4. Assign the MultiplexTransport component in your NetworkManager's transport
5. Add a WebsocketTransport component to the gameobject
6. Add the TelepathyTransport component to the MultiplexTransport as the first transport
7. Add the WebsocketTransport component to the MultiplexTransport as the second transport
Please note that Telepathy and WebsocketTransport cannot listen to the same port. By default Telepathy listens to 7777 and the websocket transport listents to 7778. If you change this configuration, make sure they use different ports.