Releases: Unity-Technologies/com.unity.netcode.gameobjects
Minor Fix
RPC Overloads & Incremental Update Loop
This is a feature update.
It adds:
- Support for RPC method overloads
- Incremental Update Loop
For large projects, you can now have the per object processing be incremental. Thus never freezing a frame.
Editor Hotfix
Fixes an issue where the NetworkedPrefab list would not properly read serialized values.
Performance RPC Hotfix
Fixes a typo in a one of the InvokeRpc methods
Performance RPC Method Invoke Fix
This version adds new performance invokes. All performance RPC invokes now have the "Performance" suffix.
Example:
Old: InvokeClientRpcOnClient(method, stream);
New: InvokeClientRpcOnClientPerformance(method, stream);
The old performance invokes have been made obsolete.
Spawn & Scene Rewrite!
This is a big release! The spawn system has been rewritten to support "SoftSynced" objects. The scene system was also rewritten to fix previous issues.
This version:
- Includes a visibility system once again!
- Removes IntX dependency
- Supports SoftSynced scene objects
- Adds custom spawn and destroy handlers for custom object pooling
- Adds RPC return values
- Minor cryptography fixes to make the handshake more resistant against time channel attacks
- Adds an example project
- Adds missing 0 parameter RPC overload
And more!
Hope you guys enjoy this one. You can as always report bugs with the issue tracker and get help on our discord server!
Doc Improvements & RPC Overloads!
This release is fairly backwards compatbile but includes breaking changes. It adds much better XML documentation and fixes many issues with the built in networked var collections.
Note that this release breaks some custom INetworkedVar implementations.
It also adds missing RPC overloads.
Writer Hotfix
Minor hotfix that fixes an issue when writing sbyte datatype.
Bugfixes and Prefab Improvements
This release includes mostly bugfixes:
- It fixes an issue where prefab position was not respected.
- It adds Serializable versions of the NetworkedVar class.
- It fixes the DISABLE_CRYPTOGRAPHY conditional, you can now once again compile the MLAPI without any cryptography.
- It fixes issues where NetworkedVars was not being synced if they were in the baseclass.
- Improves logging when a client writes to a NetworkedVar it doesn't have permission to write in.
- Adds better error logging when using .NET 2.0 subset (Note that subset is not officially supported, but it will now work without encryption features)
It also improved moddability and DLC support by allowing dynamic networked prefabs to be added at runtime. Prefabs are now based on a hash of the PrefabName instead of the index in the NetworkingManager.
Installer Compatibility
Removed C# >4 features from the installer.