Skip to content

v2.13.1

Latest

Choose a tag to compare

@michalChrobot michalChrobot released this 24 Jul 12:20

[2.13.1] - 2026-07-19

Added

  • Single player session section to provide users with information about SinglePlayerTransport and an example script of how to switch between single and multi player sessions. (#4062)

Fixed

  • Issue where NetworkAnimator did no bounds check on the parameter index read prior to obtaining a pointer to the location within the array. (#4090)
  • Issue where scene migration in a distributed authority session would throw an exception on clients migrating their owned NetworkObject instances to a different scene.(#4086)
  • Issue where migrating a dynamically spawned or in-scene placed NetworkObject into a different scene during awake could result in that spawned instance to not be synchronized. (#4086)
  • Issue where a NullReferenceException was thrown when a non-authority failed to spawn a NetworkObject. (#4067)
  • Issue where the active scene was not being serialized as the 1st scene which could result in various errors including a soft synchronization error if, on the client-side, other synchronized scenes had already been loaded prior to the active scene, which is always loaded as LoadSceneMode.SingleMode when client synchronization is set to LoadSceneMode.SingleMode, resulting in the previously loaded scene(s) to be unloaded. (#4065)
  • Issue when FastBufferReader is attempting to read a string and all or a portion of the character count has already been read by user script, it could read a character length that results in a negative byte length which could result in an editor crash. (#4052)
  • Issue where NetworkRigidbodyBase was not applying rotation correctly when using Rigidbody2D. (#4012)
  • Issue where NetworkRigidbodyBase was always checking the 3D rigid body's interpolation mode when determining if it is kinematic and needs to put the rigid body to sleep and then switch to interpolation. (#4012)
  • Fixed AnticipatedNetworkTransform not respecting the InLocalSpace flag. (#3995)