doc: Added doc for KCP Transport

This commit is contained in:
MrGadget1024 2020-11-02 11:18:55 -05:00
parent 2594aeb49f
commit 7d0890b80f
4 changed files with 19 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,14 @@
# KCP Transport
**KCP transport for Mirror.**
## Usage
Details coming soon!
## Features
Details coming soon!
## Credits
Skywinds for [ARQ Protocol](https://github.com/skywind3000/kcp)
![The KCP Transport component in the Inspector window](KCP.PNG)

View File

@ -2,6 +2,8 @@
Mirror is a high level Networking Library that can use several different low level transports. To use a transport, simply add it as component to the NetworkManager and drag it into the NetworkManager's Transport field.
- [KCP - KCP Transport](KCPTransport.md) based on kcp.c v1.7, nearly translated 1:1.
- [TCP - Telepathy](Telepathy.md) Simple, message based, MMO Scale TCP networking in C\#. And no magic.
- [TCP - Apathy](https://mirror-networking.com/apathy/) Apathy is a fast, lightweight, allocation-free low level TCP library for Unity developed by vis2k. Apathy was developed in native C for maximum MMO Scale networking performance.
@ -20,4 +22,4 @@ Mirror is a high level Networking Library that can use several different low lev
- [Steam - FizzySteamworks](FizzySteamworks.md) Transport utilising Steam P2P network, building on Steamworks.NET.
- [Steam - FizzyFacepunch](FizzyFacepunch.md) Transport utilising Steam P2P network, building on Facepunch.Steamworks.
- [Steam - FizzyFacepunch](FizzyFacepunch.md) Transport utilising Steam P2P network, building on Facepunch.Steamworks.

View File

@ -1,5 +1,7 @@
- name: Overview
href: index.md
- name: KCP - KCP Transport
href: KCP.md
- name: TCP - Telepathy
href: Telepathy.md
- name: WebGL - SimpleWebTransport