MirrorNG is a high level Networking API for Unity.
MirrorNG is built and tested for MMO Scale Networking by the developers of Cubica.
MirrorNG is optimized for ease of use and probability of success.
With MirrorNG the objects in the client are mirror images of the objects in the server. MirrorNG provides all the tools necessary to keep them in sync and pass messages between them.
The Server & Client are ONE project in order to achieve an order of magnitude gain in productivity.
When migrating a project from Mirror to MirrorNG, these will be the most notable differences.
MirrorNG | Mirror |
---|---|
Install via Unity Package Manager | Install from Asset Store |
Errors are thrown as exceptions | Errors are logged |
[ServerRpc] |
[Command] |
[ClientRpc(target=Client.Owner)] |
[TargetRpc] |
Subscribe to events in NetworkServer |
Override methods in NetworkManager |
Subscribe to events in NetworkClient |
Override methods in NetworkManager |
Subscribe to events in NetworkIdentity |
Override methods in NetworkBehaviour |
Methods use PascalCase (C# guidelines) | No consistency |
NetworkTime available in NetworkBehaviour |
NetworkTime is global static |
Send any data as messages | Messages must implement NetworkMessage |
Supports Unity 2019.3 or later | Supports Unity 2018.4 or later |
MirrorNG has many new features
- MirrorNG supports fast domain reload
- Components can be added in child objects
- Your client can connect to multiple servers. For example chat server and game server
- Modular, use only the components you need.
- Error handling
- Version defines
- Server Rpcs can return values
- The default transport features DoS prevention
- The default transport has CRC64 integrity check
- MirrorNG provides unreliable channel out of the box
If you look under the hood, the code base has some significant differences based on the core values of each project
- MirrorNG follows the SOLID principles.
- MirrorNG avoids singletons and static state in general.
- MirrorNG has high
- MirrorNG has low
- MirrorNG values code quality, Mirror values API stability
If you want to make a game with MirrorNG, the preferred installation method is Unity Package Manager.
Use unity 2019.3 or later.
- Install git
- Open your project in unity
- Install UniTask using Unity Package Manager
- Click on Windows -> Package Manager
- Click on the plus sign on the left and click on "Add package from git URL..."
- enter https://github.com/MirrorNG/MirrorNG.git?path=/Assets/Mirror
- Unity will download and install MirrorNG
- Set a Scoped Register to see updates
Install using openupm
This is how I do it for Cubica because unity will display all versions of MirrorNG and allow me to switch amongst them.
- Install git
- Install node.js 12
- Install openupm
- install MirrorNG in your project:
cd YOUR_PROJECT openupm add com.mirrorng.mirrorng
- Open your project in Unity
If you prefer some pain, you can download it directly from the release section and add it to your project. You will need to manually install UniTask and Cecil.
If you want to contribute to MirrorNG, follow these steps:
- Install git
- clone this repo
- Open in unity 2019.4.x or later
- Install git or use your favorite git client
- as administrator, clone this repo with symbolic links support:
It you don't want to use administrator, add symlink support to your account. If you don't enable symlinks, you will be able to work on MirrorNG but Unity will not see the examples.
git clone -c core.symlinks=true https://github.com/MirrorNG/MirrorNG.git
- Open in unity 2019.4.x or later
Here is a list of some transports supported by NG and how they compare to each other
Kcp | Websocket | Steam | LiteNetLibNG | IgnoranceNG | |
---|---|---|---|---|---|
CCU | 1000+ | ? | ? | ? | ? |
Protocol | UDP | TCP | UDP | UDP | UDP |
Unreliable | ✅ | ✅ | ✅ | ✅ | |
WebGL | ✅ | ||||
Mobile | ✅ | ? | ? | ||
CPU | LOW | HIGH | ? | ? | ? |
NAT Punch | ✅ | ||||
Encryption | ✅ | ✅ | |||
IPV6 | ✅ | ✅ | ? | ? | ? |
Managed | ✅ | ✅ | ✅ | ||
Based on | KCP | Websockets | Steam Game Networking Sockets | LiteNetLib | ENet |
There are several ways to contribute to this project:
- Pull requests for bug fixes and features are always appreciated.
- Pull requests to improve the documentation is also welcome
- Make tutorials on how to use this
- Test it and open issues
- Review existing pull requests
- Donations
When contributing code, please keep these things in mind:
- KISS principle. Everything needs to be as simple as possible.
- An API is like a joke, if you have to explain it is not a good one. Do not require people to read the documentation if you can avoid it.
- Follow C# code conventions.
- Follow SOLID principles as much as possible.
- Keep your pull requests small and obvious, if a PR can be split into several small ones, do so.