-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [1.0.0-pre.12] - 2022-01-24 ### Fixes * Clean up changelog for package promotion. ## [1.0.0-pre.11] - 2022-01-24 ### Changes * Updated to Burst 1.6.4. * Updated to Mathematics 1.2.5. * Documentation has been moved to the [offical multiplayer documentation site](https://docs-multiplayer.unity3d.com/transport/1.0.0/introduction). ### Fixes * Fixed a division by zero in `SimulatorPipelineStage` when `PacketDropInterval` is set. * Don't warn when receiving repeated connection accept messages (case 1370591). * Fixed an exception when receiving a data message from an unknown connection.
- Loading branch information
Unity Technologies
committed
Jan 24, 2022
1 parent
c96ecc4
commit ee79f11
Showing
58 changed files
with
2,330 additions
and
3,712 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# https://dotnet.github.io/docfx/tutorial/howto_filter_out_unwanted_apis_attributes.html | ||
|
||
apiRules: | ||
- exclude: | ||
uidRegex: ^Unity.Networking.Transport.Tests.*$ | ||
type: Namespace | ||
- exclude: | ||
uidRegex: ^Unity.Networking.Editor.*$ | ||
type: Namespace | ||
- exclude: | ||
uidRegex: ^Unity.Networking.Transport.Samples.*$ | ||
type: Namespace |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,24 @@ | ||
# About Unity.Networking.Transport | ||
# About Unity Transport | ||
|
||
Use the `com.unity.transport` package to add multiplayer / network features to your project. | ||
The Unity Transport Package (`com.unity.transport`) is a low-level networking library geared towards multiplayer games development. It provides a connection-based abstraction layer over UDP sockets with optional functionality like reliability, ordering, and fragmentation. | ||
|
||
## Overview | ||
# Documentation | ||
|
||
![Transport Overview](images/layercake.png) | ||
|
||
# Installing Unity.Networking.Transport | ||
|
||
For installation instructions on the `com.unity.transport` package, follow the [installation guide](install.md). | ||
|
||
# Using Unity.Networking.Transport | ||
|
||
To learn how to use the `com.unity.transport` package in your own project, read the [manual](TableOfContents.md). | ||
|
||
> **Note**: Once you have installed the package, it is recommended that you read through the client and server workflows first. | ||
The full documentation for the package can be found on the [Unity multiplayer documentation site](https://docs-multiplayer.unity3d.com/transport/1.0.0/introduction). | ||
|
||
# Technical details | ||
|
||
## Requirements | ||
|
||
This version of `com.unity.transport` is compatible with the following versions of the Unity Editor: | ||
|
||
* 2020.1.2 and later | ||
* All platforms supported by Unity are supported by the transport | ||
|
||
## Package contents | ||
|
||
The following table shows the package folder contents. | ||
|
||
|Location|Description| | ||
|---|---| | ||
|`Documentation`|Contains manual part of the documentation (script reference is inline using xmldoc).| | ||
|`Runtime`|Contains the implementation.| | ||
|`Tests`|Contains all the tests.| | ||
This version of `com.unity.transport` is compatible with the following Unity versions and platforms: | ||
|
||
* 2020.1.2 and later. | ||
* All platforms supported by Unity are supported, except WebGL. | ||
|
||
## Document revision history | ||
|
||
|Date|Reason| | ||
|---|---| | ||
|Jan 24, 2022|Documentation moved to [multiplayer docs site](https://docs-multiplayer.unity3d.com/).| | ||
|Oct 22, 2018|Documentation reorganised and proofread by Technical Writer.| | ||
|Jul 18, 2018|Document created. Matches package version 0.1.0.| |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.