Zapnet
dead.gg
$0.0
$5.00
100%OFF
Date |
Price |
---|---|
日期和时间 |
价钱($) |
01/30(2020) |
50.0 |
02/03(2020) |
60.0 |
02/18(2020) |
30.0 |
03/02(2020) |
60.0 |
03/13(2020) |
40.0 |
05/22(2020) |
60.0 |
07/27(2020) |
30.0 |
08/04(2020) |
60.0 |
08/10(2020) |
40.0 |
08/13(2021) |
5.0 |
09/17(2021) |
0.0 |
11/01(2024) |
0.0 |
Jump AssetStore
⚡ Zapnet is a multiplayer games framework for Unity developed specifically for programmers⚡ ABOUT ZAPNETZapnet is a multiplayer games framework for Unity developed specifically for programmers.Many other assets try to make their frameworks more accessible to less experienced developers by integrating visual editing into the Unity Editor by sacrificing performance and speed.Zapnet doesn't do this, and trusts that the programmer knows what they're doing.We offer source code access on request via Gitlab, just message us on Discord after or before you purchase for more information.⚡ USEFUL LINKSJoin us on Discord to join our active community and get support from us whenever you need it! Please PM us on Discord when you purchase with your invoice number, so we can give you access to exclusive customer channels.Discord: https://discord.dead.ggDocumentation: https://zapnet.dead.ggSource Code: https://github.com/deadgg/zapnet⚡ DOCUMENTATIONOur documentation is ever expanding as we learn about the requirements of our customers.⚡ Fully documented C# API so that intellisense helps you understand what a class or method does.⚡ Fully generated scripting reference including with the asset.⚡ Online documentation at https://zapnet.dead.gg with a Getting Started guide and pages on all core Zapnet features.⚡ Dedicated support from developers in our Discord server and a friendly userbase willing to help and share tips & tricks.⚡ Example game is included that demonstrates movement and projectile synchronization.⚡ FEATURESNetwork PrefabsInstantiate any prefab with the NetworkPrefab component easily by transmitting its unique 2 byte identifier and instantiating it with one simple method call on the other side.Delivery ModesMakes use of all delivery modes that Lidgren supports such as Reliable, Unreliable Sequenced, Reliable Unordered, Reliable Sequenced and Reliable Ordered.EntitiesNetwork entities are the main concept behind Zapnet, all objects you want to be replicated across the network will inherit the entity class. By default, the position and rotation of entities are automatically synchronized and interpolated smoothly.StatesEvery entity has its own state class that inherits a basic state class. The state will contain variables relating to the entity that need to be sent very frequently with entity state updates. It's very simple to use.EventsWith the event system you can create an event data type that can be serialized and sent over the network, deserialized, and then invoked on all subscribers for that event. Events can be transmitted globally or for a specific entity.Synchronized VariablesEntities can have synchronized variables that are separate to state variables and are only synchronized when they have changed.Remote CallsWhile it is recommended to use Events because they are faster and more performant, you can use remote calls which are Zapnet's version of the RPC. They do not use reflection like some other networking alternatives.Network HitboxesA build in network hitbox rewinding system. Simply attach the NetworkHitbox component to an entity (or any prefab) with a trigger collider. When a raycast is performed using Zapnet's raycast methods, hitboxes will be automatically rewound to the position they were at on a particular server tick before the raycast is made.ControllablesThe base controllable entity can be inherited by your player class to handle the transmitting of input data, client-side prediction, and server reconciliation with very minimal effort on your part except from defining which inputs are being pressed and how to handle the application of those inputs with regards to your character controller.Entity SubsystemsEntity subystems are additional components that can be added to entities. Each subsystem can contain its own Synchronized Variables, State, and can make Remote Calls. Subsystems have an Entity accessor to get the entity they belong to. Infact, an Entity is just a Subsystem, so everything a subsystem can do an entity can do too.