You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What makes Netick vastly superior to other networking solutions are three core pillars:
23
+
24
+
### Simplicity
25
+
Netick is very simple. The API is intuitive and straightforward. Netick makes writing predicted, high-end, and cheat-free networked games as close to writing single-player games as possible. RPCs are almost completely not used, thus simplifying everything. It will no longer feel like you are writing a multiplayer game.
26
+
27
+
### Consistency
28
+
While other solutions are plagued by internal de-syncs and race conditions, Netick is completely void of any such issues. There are no race conditions or de-syncs in Netick, you won't have any such issues on the worst connections. Your game will behave the same way for good and very bad connections. Netick is the only solution in the market that offers this guarantee. It is designed from the ground up to satisfy this requirement.
29
+
30
+
### Exceptional Bandwidth Usage
31
+
Netick uses an innovative Delta Snapshots algorithm that achieves the lowest bandwidth usage seen ever, proven by open-source benchmarks. Netick uses 10x higher compression precision than other networking solutions, yet uses less bandwidth.
32
+
33
+
### Radical CPU Performance
34
+
Netick is written with high-performance unmanaged C# code in a data-oriented fashion, achieving an unseen level of performance. Netick is designed to not use any CPU time when something does not move or changes. You can have 10K synced objects (non-empty) and use no additional CPU time. Again, Netick is the only solution in the market that does this. This has been referred to as "Dark Magic" by one of our users, it really is magic!
35
+
36
+
21
37
## Installation
22
38
23
39
### Prerequisites
@@ -53,7 +69,7 @@ And many others.
53
69
54
70
### Bandwidth
55
71
56
-
Netick 2 uses an innovative state synchronization algorithm that moves multiplayer game development forward. Not only does it achieve the lowest bandwidth usage ever seen, but it also simplifies networked games by ensuring full networked state update atomicity. Netick 2 uses a novel approach for Delta Snapshots that makes it possible to use Interest Management and Delta Snapshots together, performatively. This has been unheard of in AAA or indie games, due to the difficulty or impracticality of doing that. However, in Netick 2, it just works.
72
+
Netick 2 uses an innovative state synchronization algorithm that moves multiplayer game development forward. Not only does it achieve the lowest bandwidth usage ever seen, but it also simplifies networked games by ensuring full networked state update atomicity, completely eliminating all network-related race conditions/desyncs. Netick 2 uses a novel approach for Delta Snapshots that makes it possible to use Interest Management and Delta Snapshots together, performatively. This has been unheard of in AAA or indie games, due to the difficulty or impracticality of doing that. However, in Netick 2, it just works.
57
73
58
74
Netick also lets you fully sync, predict, and interpolate anything in the game: network properties, collections, etc. This greatly simplifies development for complicated or demanding projects.
0 commit comments