Skip to content

1.0.0-pre.4

Compare
Choose a tag to compare
@ashwinimurt ashwinimurt released this 06 Jan 22:13
· 251 commits to release/1.0.0 since this release
b14204c

Netcode for GameObjects

Added

  • Added com.unity.modules.physics and com.unity.modules.physics2d package dependencies (#1565)

Removed

  • Removed com.unity.modules.ai package dependency (#1565)
  • Removed FixedQueue, StreamExtensions, TypeExtensions (#1398)

Fixed

  • Fixed in-scene NetworkObjects that are moved into the DDOL scene not getting restored to their original active state (enabled/disabled) after a full scene transition (#1354)
  • Fixed invalid IL code being generated when using this instead of this ref for the FastBufferReader/FastBufferWriter parameter of an extension method. (#1393)
  • Fixed an issue where if you are running as a server (not host) the LoadEventCompleted and UnloadEventCompleted events would fire early by the NetworkSceneManager (#1379)
  • Fixed a runtime error when sending an array of an INetworkSerializable type that's implemented as a struct (#1402)
  • NetworkConfig will no longer throw an OverflowException in GetConfig() when ForceSamePrefabs is enabled and the number of prefabs causes the config blob size to exceed 1300 bytes. (#1385)
  • Fixed NetworkVariable not calling NetworkSerialize on INetworkSerializable types (#1383)
  • Fixed NullReferenceException on ImportReferences call in NetworkBehaviourILPP (#1434)
  • Fixed NetworkObjects not being despawned before they are destroyed during shutdown for client, host, and server instances. (#1390)
  • Fixed KeyNotFound exception when removing ownership of a newly spawned NetworkObject that is already owned by the server. (#1500)
  • Fixed NetworkManager.LocalClient not being set when starting as a host. (#1511)
  • Fixed a few memory leak cases when shutting down NetworkManager during Incoming Message Queue processing. (#1323)

Changed

  • The SDK no longer limits message size to 64k. (The transport may still impose its own limits, but the SDK no longer does.) (#1384)
  • Updated com.unity.collections to 1.1.0 (#1451)

Unity Transport for Netcode for GameObjects

Added

  • Added new 'Max Send Queue Size' configuration field in the inspector. This controls the size of the send queue that is used to accumulate small sends together and also acts as an overflow queue when there are too many in-flight packets or when other internal queues are full. (#1491)

Changed

  • Updated Netcode for GameObjects dependency to 1.0.0-pre.4 (#1562)
  • Removed 'Maximum Packet Size' configuration field in the inspector. This would cause confusion since the maximum packet size is in effect always the MTU (1400 bytes on most platforms). (#1403)
  • Updated com.unity.transport to 1.0.0-pre.10 (#1501)
  • All delivery methods now support fragmentation, meaning the 'Send Queue Batch Size' setting (which controls the maximum payload size) now applies to all delivery methods, not just reliable ones. (#1512)

Fixed

  • Fixed packet overflow errors when sending payloads too close to the MTU (was mostly visible when using Relay). (#1403)
  • Don't throw an exception when the host disconnects (issue 1439 on GitHub). (#1441)
  • Avoid "too many inflight packets" errors by queueing packets in a queue when the limit of inflight packets is reached in UTP. The size of this queue can be controlled with the 'Max Send Queue Size' configuration field. (#1491)