Граф коммитов

2723 Коммитов

Автор SHA1 Сообщение Дата
Simon Lemay 8b2a8b7a59
refactor: Use string-based encryption APIs in UnityTransport (#2238)
* Add missing XML documentation

* Use string-based secure APIs from UTP

Co-authored-by: ashwini <36935028+ashwinimurt@users.noreply.github.com>
2022-10-06 17:16:07 +00:00
Kitty Draper 26577d6b96
feat: Supporting managed types in NetworkVariable [MTT-4594] (#2219)
* feat: Supporting managed types in NetworkVariable.

Also changes NetworkVariable to deserialize INetworkSerializable types in-place - this is done to avoid having a GC alloc every time the value changes. There will only be a GC alloc if it receives an updated value and the current value is null.

Managed types are supported in two ways:

1. By making them INetworkSerializable, or
2. By assigning the delegates UserNetworkVariableSerialization<T>.WriteValue and UserNetworkVariableSerialization<T>.ReadValue

If a managed type is passed in without meeting one of those criteria (or any unsupported type), then an exception will be thrown the first time the NetworkVariable is read or written. That timing is to ensure no weird behavior with exceptions being thrown before user code is able to assign the delegates.

Co-authored-by: Fatih Mar <mfatihmar@gmail.com>
2022-10-06 16:08:18 +00:00
Simon Lemay 374cb49c06
refactor: Simplify construction of RelayServerData (#2237) 2022-10-05 21:54:26 +00:00
Noel Stephens e9d94544b7
fix: NetworkAnimator rising RTT issue (#2236)
* fix
This fixes the issue where NetworkAnimator was not completely updated to the changes with AnimationMessage.  NetworkAnimator will now only send states that have changed.
Removed the check for AnimationMessage.AnimationStates being null as it will always be null when deserializing.
Updated several comments for readability and clarity.

* test
adding additional checks to assure or AnimationStates list does not increase in size over time.
2022-10-05 20:32:18 +00:00
Noel Stephens 9f44f65cc4
test: Parenting manual test updates for PR-2146 (#2207)
This PR includes updates to the In-Scene Object Parenting manual test.
2022-10-05 19:12:18 +00:00
Simon Lemay cf695a56ed
feat: Add new SetRelayServerData method to UnityTransport (#2235)
* feat: Add new SetRelayServerData method to UnityTransport

* Don't pass server data by reference

* Add PR number to CHANGELOG entry
2022-10-05 17:06:23 +00:00
Gregory Kim d00ddb920e
chore: Update UTP dependency to 1.3.0 (#2231)
* chore: Bump UTP version to 1.3

* chore: Bump UTP version to 1.3
2022-10-05 12:15:09 +00:00
ashwini 2ca6038a54
chore: Update to use UTP 2.0.0-exp.7 for compatibility test (#2234) 2022-10-05 10:55:59 +00:00
Jeffrey Rainy 978db69f2d
fix: correctly rejecting NetworkList modifications on unauthorized clients (#2233)
* fix: correctly rejecting NetworkList modifications on unauthorized clients. Adding tests for it. Allowing null IEnumerable to mean empty list in NetworkList
2022-10-05 08:07:25 +00:00
Jeffrey Rainy e610067f63
chore: secure connections (#2209)
Interfaces with UTP 2.0 to allow secure connection.
Adds UnityTransport APIs to set secrets.
2022-10-05 03:37:25 +00:00
Noel Stephens 64c43315cf
fix: Parenting does not preserve WorldPositionStays option and other parenting related issues (#2146)
* fix
Parenting:
Fixed the issue where WorldPositionStays was not being synchronized with clients.
Removed m_IsReparented and associated properties.
Added world position stays parameter to CreateLocalNetworkObject to preserve worldPostionStays.
This fixes some edge case scenarios and issues with parenting in-scene placed NetworkObjects.
One in particular is to provide the local space position and rotation in ParentSyncMessage if the WorldPositionStays value is false.  The server might maintain the original local space values and upon being reparented it re-applies the local space values.  This is only pertinent if the user decides they don't want to use a NetworkTransform for the NetworkObject in question.
Now, a users can control what the final position, rotation, and scale of a NetworkObject is when being added/removed to/from a parent's sibling list ("parented or de-parented").
Parenting and Scale:
Fixed issue where GetMessageSceneObject wasn't using the NetworkObject's lossy scale value.  This would result in improper scaling of parented (WorldPositionStays = true) child NetworkObjects for late joining clients.  Added comments with details on this.
Fixed edge case scenario where nested in-scene placed NetworkObject children are de-parented and then a client late joins. Under this scenario (only for in-scene placed NetworkObjects) we want the late joining client to remove its parent, then set the transform values, and then get spawned.

NetworkTransform:
Fixed issue where TryCommitTransformToServer was not honoring the NetworkTransform.InLocalSpace property.
Fixed issue where teleporting did not honor the NetworkTransforms's current synchronize axis settings.
Removed the private m_TickFrequency property as it is no longer being used.

* refactor
CreateLocalNetworkObject now just accepts the NetworkObject.SceneObject structure as opposed to the 10 properties of the NetworkObject.SceneObject structure passed in as parameters.
Provided the ability to invoke NetworkObject.TrySetParent with a null value in order to be able to remove a parent while also selecting whether they want WorldPositionStay to be true or false (when removing a parent WorldPositionStays impacts the final transform values and can lead to scale issue if you parent with WorldPositionStays set to false and then it remove the parent with WorldPositionStays set to true).
Consolidated the CreateLocalNetworkObject's assignment of the transform values, parenting, and DDOL migration.
Removed parenting from CreateLocalNetworkObject
Removed setting the cached parent directly within SpawnNetworkObjectLocallyCommon as this is done within NetworkObject.ApplyNetworkParenting.

* add
Added RemoveParent to the ParentSync message.
Added applying scale to CreateLocalNetworkObject.
Added parent child sorting to the SceneEventData's synchronization serialization process.
Added the TryRemoveParent helper method to make removing a parent easier.  Without this method users will have to use TrySetParent and cast the null value to either GameObject or NetworkObject.

* test
Added ParentingWorldPositionStaysTest:
Testing with and without WorldPositionStays while also varying child position, rotation, and scale values.
Validates scale with multi-generation nested children where most of the parents have a scale other than Vector3.one. 
Created abstract IntegrationTestWithApproximation to avoid replicating the exact same set of Approximately methods.

Added ParentingInSceneObjectsTests:
This includes all of the scripts and assets that the ParentingInSceneObjectsTests needs.
It includes adding the ParentingInSceneObjects scene to the scenes in build list as well.
This also verifies an in-scene placed NetworkObject parented under a GameObject will preserve that hierarchy.

NetworkTransformStateTest:
Updated the bool parameters to be more meaningful named enums so you know what exactly is being tested.
Added additional NetworkTansformState.IsTeleportingNextFrame logic to the existing test.
Added an additional "step" which verifies the NetworkTransformState is additively collapsing for each detected axial delta over the relative threshold value.

Co-authored-by: Jesse Olmer <jesseo@unity3d.com>
Co-authored-by: Unity Netcode CI <74025435+netcode-ci-service@users.noreply.github.com>
2022-10-05 00:25:18 +00:00
Simon Lemay 41ef88bee1
feat: IPv6 support in UnityTransport [MTT-4801] (#2232)
* feat: IPv6 support in UnityTransport [MTT-4801]

* Add PR number to CHANGELOG entry

* Make standards happy
2022-10-04 20:08:32 +00:00
Noel Stephens 326bda69bd
test: NetworkAnimator manual test updates for PR-2127 (#2205)
Fixes and additions to the NetworkAnimator manual tests.
2022-10-04 11:17:45 -05:00
Noel Stephens 5da02477a2
fix: SceneEventProgress OnComplete not invoked on timeouts [MTT-4772] (#2222)
* fix
Need to track any clients that disconnected to add them to the list of clients that did not complete the scene event.
Reducing the logic used to determine when the SceneEventProgress is finished.
Renamed a few properties and methods for code readability purposes.
Fixed the logic behind determining when the SceneEventProgress should complete.
Renaming the SetSceneAsyncOperation to just SetAsyncOperation.

* refactor
Completely removed the entire SceneEventAction.
Replaced it with an even more simplified version of SceneEventProgress.
We will no longer allocate memory for SceneEventAction.

* style
Added additional comments for clarity
fixing grammar in a comment
removing two CR/LFs
moving a comment above a few lines of code (otherwise it doesn't make sense).
Last comment adjustment

* test
Added several tests to verify that SceneEventProgress will complete if all clients finished the scene event, if clients disconnect while it is still in progress, will time out if one or more clients never finish, and finally will still complete if one or more clients late join while it is still in progress.
2022-10-03 14:53:50 -05:00
Kitty Draper 596b941abc
fix: Fix IsOwner/IsOwnedByServer being wrong on the server after calling RemoveOwnership [MTT-4259] (#2211)
* fix: Fix IsOwner/IsOwnedByServer being wrong on the server after calling RemoveOwnership
2022-10-03 17:42:32 +00:00
Noel Stephens b92c6b8346
fix: test project physics sample (#2227)
* fix
Removed the extra NetworkTransform no longer needed form the PhyscisPlayer prefab since the PlayerMovement class derives from NetworkTransform.

* update
moving the physics sample higher in the list and the sample scene to the bottom.
2022-09-30 21:30:52 -05:00
Noel Stephens 993c3d8519
fix: NetworkConfig cached hash was not being regenerated on clients for each unique ConnectionRequestMessage [MTT-4605] (#2226)
MTT-4605
* fix
This resolves the issue where clients would not regenerate their NetworkConfig's hash value if a client disconnected from one server and tried to join another server.

* test
This validates that passing false to the NetworkConfig.GetConfig method generates a unique hash value.

* update
updating the changelog entry with the PR number.
2022-09-30 18:12:26 -05:00
Noel Stephens 14c26fe948
fix: player objects do not honor the DontDestroyWithOwner property [MTT-4458] (#2225)
* fix
This fixes the issue with player objects not honoring the DontDestroyWithOwner property.
The summary for DontDestroyWithOwner was incorrect.  When true the NetworkObject's ownership is given back to the server.

* test
Adding a test to verify that when a client disconnects and the client's player object has DontDestroyWithOwner set to true that the NetworkObject's ownership is transferred back to the client.
2022-09-30 16:32:44 -05:00
Simon Lemay bc08e658cd
fix: Issues when using UTP 2.0.0-exp.6 (#2224)
* fix: Bind to server endpoint when using Relay

* Fix NativeArray conversion

* Simplify creation of DataStreamReader
2022-09-28 21:24:24 +00:00
Noel Stephens f98e7a2d80
fix: client authoritative NetworkAnimator skips sending to 2nd player when in server mode (#2127)
co-authored-by: Vadim Tsvetkov
co-authored-by: Andrei Soprachev
* fix: animator syncronization for >2 clients
* fix: remove redundant rpc call when host
* test
This includes coverage for running in server mode only as well as validates the fix where a second client will receive updates.

co-authored-by: Noel Stephens - Unity
* fix
Fixed some additional issues with trigger synchronization.
Removed the bool from ProcessAnimationMessageQueue as it was no longer needed.

* fix
This is a new approach to synchronizing transitions with late joining players without having to actually set the associated conditional trigger.  By building a small list of all states and then building a quick lookup table, we can just synchronize the "transition state" which for late joining clients is a cross fade between the start and destination state.  We synchronize the normalized time (where it was in the transition on the server side when the client connected) of the transition this way as well. Now, we just synchronize states (which some can be transition states).

* test
increased number of clients
Fixed issue where the late joining client was not being shutdown at the end of the LateJoinSynchronizationTest.

* update
NetworkAnimator uses ISerializationCallbackReceiver to build its transition to states table for late joining client synchronization when a transition is ocurring.

Co-authored-by: Vadim Tsvetkov <florius0@ninsar.pro>
Co-authored-by: Andrei Soprachev <soprachev@mail.ru>
Co-authored-by: Unity Netcode CI <74025435+netcode-ci-service@users.noreply.github.com>
2022-09-28 18:18:53 +00:00
Simon Lemay adc6432c87
fix: Set default nonce of Relay server data to 1 (#2223) 2022-09-28 13:25:27 -04:00
Simon Lemay 96025ac82d
fix: Restarting UnityTransport after it failed to start [MTT-3452] (#2220)
* Add test for transport restart failure

* Fix restart after transport failure

* Add CHANGELOG entry

* Add PR number to CHANGELOG entry
2022-09-27 15:53:20 -04:00
Simon Lemay 58becb5852
feat: Dynamically size the UnityTransport send queues [MTT-2816] (#2212)
* Make BatchedSendQueue dynamically-sized

* Remove MaxSendQueueSize as a serialized field

* Add CHANGELOG entries

* Add PR number to CHANGELOG entries

* Add extra tests for BatchedSendQueue

* Address some PR comments

* Keep the standards checks happy

* Address a review comment + some cleanup
2022-09-27 13:46:19 -04:00
Kitty Draper 9185677b6f
fix: Fixed compile error in 2022.2 (#2214)
* Fix compile error in 2022.2+
2022-09-23 09:55:35 -07:00
Jeffrey Rainy c5dff6d3fd
perf: performance improvements MTT-4641 #2176 (#2204)
* Performance Improvement

- Merge if else into return
- Merge .rotation and .position into .SetPositionAndRotation
- Remove .ToString() call on strings
- Use TryGetComponent to reduce garbage allocation
- Merge .Where().Count() calls into .Count() call
- Remove indirect gameObject call 
- Remove redundant null check
- Use native .Count instead of LINQ method
- Use faster string comparison

* style: adjusting to code standards

Co-authored-by: smitdylan2001 <dylan.smit01@gmail.com>
2022-09-23 13:23:31 +00:00
JS Fauteux 5989836dee
feat: Adding support for netsim to be able to work with Tools adapter (#2184)
* Adding support for netsim to be able to work with Tools adapter
* Setting up Simulator Pipeline stage if NetSim is available
* Deprecate DebugSimulator when using UTP2

Co-authored-by: Jesse Olmer <jesseo@unity3d.com>
Co-authored-by: DenninDalke <dennindalke@gmail.com>
2022-09-22 19:13:51 -07:00
Simon Lemay f06b562766
chore: Remove soon-to-be-deprecated API from UnityTransport (#2213) 2022-09-22 19:39:51 +00:00
Kitty Draper 566a410dfa
fix: Remove "Script" fields from Netcode components in the inspector [MTT-2947] (#2172)
* fix: Remove "Script" fields from Netcode components in the inspector

* Standards

* standards again

* Fix compile errors in minimalproject

* Whoops, those version defines were for the runtime, had to add them to editor too.

* validator...
2022-09-22 18:44:58 +00:00
Jesse Olmer 06f73020e0
fix: Update Add Component menu structure [MTT-4078] (#2191)
Put netcode components into a common sub-folder of the Add Component menu, and also fixed word spacing inconsistencies in the entries
2022-09-19 11:23:10 -04:00
Noel Stephens fdebb55167
fix: Set state private RPC handlers were not honoring local vs world space assignment of position and rotation (#2203)
* fix

SetStateClientRpc and SetStateServerRpc were not updated to use SetStateInternal which honors local vs world space transform setting.s

* update changelog

* test

Modified existing tests to include testing SetState which validates the changes made to NetworkTransform.SetState and associated private methods.

* update

adding the PR number to the changelog entry.

* test

removing conditional check that was not needed.

* update

adding further clarity as to where the two rpc methods were located.
2022-09-14 18:19:12 +00:00
ashwini 43218a390f
chore: Add CI to test minimal project with different versions of transport (#2190)
chore: add ci to test minimal project with different versions of transport
2022-09-14 16:21:10 +00:00
ashwini 813c3dc196
chore: update changelog for 1.0.2 (#2200) 2022-09-14 07:44:50 -07:00
Jeffrey Rainy 1046647567
chore: expose websockets (#2201)
* chore: websockets. Minimalist UI to use WebSockets

* fix: adjusting #ifdef on transport version to allow building non-webgl platforms with UTP 2.0

* fix: addressing build issue where WebGL platform requires different name for UTP symbols

* fix: emitting a warning and switching to WebSockets if uers don't, on WebGL platform

* Addressing PR review comments

* Addressing PR review comments

* Update com.unity.netcode.gameobjects/CHANGELOG.md

Co-authored-by: Fatih Mar <mfatihmar@gmail.com>

Co-authored-by: Fatih Mar <mfatihmar@gmail.com>
2022-09-14 04:01:56 +00:00
Simon Lemay f34ded4fd3
feat: Non-deterministic debug simulator in UnityTransport [MTT-4592] (#2196)
* feat: Non-deterministic debug simulator in UnityTransport [MTT-4592]

* Add PR number to CHANGELOG entry
2022-09-13 15:30:30 +00:00
Fatih Mar a87bfb0df7
refactor: ILPP to import references from companion modules (#2199) 2022-09-13 08:37:58 -04:00
Jeffrey Rainy 4bce44824a
fix: Use Time.unscaledDeltaTime instead of Time.deltaTime as time step (#2187)
* fix: Use Time.unscaledDeltaTime instead of Time.deltaTime as time step (#2171)

This fixes the case of Time.timeScale = 0 stopping the NetworkManager to update.
This as no influence on all projects that always have Time.timeScale = 1.

+ Add tests
+ Change existing test using Assert.Equal(boolExpr) to the correct Assert function to display real values expected instead of just "true" or "false"

* style: removing unrelated stylistic differences. Fixing brackets placement (netcode.standards)

* test: test adjustments

* test: test adjustments

* test: Applying PR review suggestion of saving the time scale

* test: Applying PR review suggestion of saving the time scale, second location

* Reverted changes to AddNetworkPrefabTests and fixed instabilities caused by NetworkManager.Singleton (can we get rid of that completely soon?)

* reverting unwanted whitespace change

* reducing the test cases to 0.0f, 1.0f and 2.0f timescales

* Revert "Reverted changes to AddNetworkPrefabTests and fixed instabilities caused by NetworkManager.Singleton (can we get rid of that completely soon?)"

This reverts commit 02a222eeee.

Co-authored-by: PitouGames <pitou.games@gmail.com>
Co-authored-by: Kitty Draper <kitty.draper@unity3d.com>
2022-09-12 20:02:26 -04:00
ashwini ce6e921984
fix: Update Testproject Addressables bundle name to use hash of file … (#2198)
fix: Update Testproject Addressables bundle name to use hash of file name
2022-09-12 22:49:48 +00:00
Jeffrey Rainy 22df9e88e2
fix: Removing objects that got deleted from list of Dirty NetworkObjects (#2185) 2022-09-09 14:20:06 -04:00
Kitty Draper 4cb86a5e1a
fix: Fixed ConnectionApprovalTimeout not working on the client side [MTT-3451] (#2164)
* fix: Fixed ConnectionApprovalTimeout not working on the client side

* Changelog

* standards
2022-09-08 20:57:49 +00:00
Noel Stephens 20ad052623
fix: NetworkTransform was not ending extrapolation for some states. [MTT-4521] (#2170)
* update

working version that needs clean up

* update

Some touch ups and adjustments to the fix for the extrapolation issue.

* style

adding some minor comments

* update

Added comments and renamed a property.

* update

some code clean up and additional comments

* update

MTT-4521
updating changelog file

* update

MTT-4521
Renamed StopExtrapolatingLastState to TryToStopExtrapolatingLastState.

Added/adjusted comments.

* update

Applying suggested changes.

* update

removing some changes I made while testing out extrapolating past the target.
adjusted comment.

* style

adjusted comment for clarity purposes.

* test

Adding some of the tests.  Still WIP, but wanted to see how the first completed test fairs in Yamato and on consoles.

* style

removing unused namespace.

* test update

Added a form of tick synchronization prior to making changes to the authoritative transform state.

* style

adjusting comments.

* test

- Added NetworkTransformParentedLocalSpaceTests with associated helper methods, components, and properties.
- Added an "Authority" suffixe to the Authority enums for better clarity when looking at the tests within test runner.
- Updated/added additional comments

* style

Making NetworkTransformParentedLocalSpaceTests singular (NetworkTransformParentedLocalSpaceTest)

* style

adding remarks around comments

* style

splitting the comment into a summary with remarks.

* style

updating a comment on the UpdateAuthoritativeState method.

* fix

Copy paste issue.
(need to revisit tests to see why they didn't catch this)

* fix

z component

* fix

using the eurlerAngles... that section of code was a mess!
(sorry!)

* update

Just adding some parenthesis per Kitty's suggestion.

* update and fix

Updated ApplyAuthoritativeState so that it is less complicated to follow.
Fixed another issue discovered where the replicated network state values were being used for resetting interpolators during spawn initialization.  Since the replicated network state only has the most recent deltas at the time the NetworkObject is serialized, this would cause "seemingly random" late joining issues.

* test update

This validates the issue with the more recent updates that revealed the network state only having the most recent deltas and not the full transform state.  This resulted in various "seemingly" random late join transform synchronization issues (specifically the scale that is not being synchronized when spawning NetworkObjects).

* update

removed the unnecessary else if (useInterpolatedValue) condition and re-organized it such that it checks to see if it needs to apply interpolation or just depends upon the state to apply the values directly.

Added additional comments about this area of the code and future improvements.

* fix

Removing unclamped slerp and lerp due to a few timing related issues.  These issues should be solved before re-enabling any form of unclamped lerping/slerping with BufferedLinearInterpolator.

Added additional comments in some areas to be investigated for a potential fix.

* fix

temporarily disabling two editor based interpolator extrapolation based tests until I can refactor them to not take extrapolated values into consideration.

* fix

removing debug code used to verify NetworkTransform is not the only thing within NGO that fails when dropping packets (most likely to occur 20-30% drop rate).

* fix

Make sure to initialize based on whether it is set to world or local space.

* fix

When authority is applying the current position and rotation during OnNetworkSpawn, use the appropriate local vs world space values.

* update

Adding another fix to the change log

Co-authored-by: ashwini <36935028+ashwinimurt@users.noreply.github.com>
2022-09-08 15:46:30 +00:00
Jeffrey Rainy b6a68e71b9
fix: mtt-4516 NetworkList change inside OnNetworkSpawn (#2181)
* fix: Marking NetworkVariable dirty upon spawn on the host/server. Falls short as the NetworkBehaviour doesn't yet have its NetworkVariables initialized

* fix: clearing variable dirty state post spawning. Also, Initializing NetworkVariable upon spawn, as it is the logical place to do so

* test: tests and removing debug logging
2022-09-08 10:18:16 -04:00
Kitty Draper 1e6721cf6b
chore: netcode.standards --fix (#2173) 2022-09-07 14:46:52 +00:00
Kitty Draper 7936ea2ada
fix: Adds a null check for NetworkObjectReference => GameObject conversion [NCCBUG-172] (#2158)
* fix: Adds a null check for NetworkObjectReference => GameObject conversion [NCCBUG-172]

* Changelog

* style

* Update com.unity.netcode.gameobjects/Tests/Runtime/Serialization/NetworkObjectReferenceTests.cs

Co-authored-by: Jesse Olmer <jesseo@unity3d.com>

* Review feedback.

Co-authored-by: Jesse Olmer <jesseo@unity3d.com>
2022-09-06 20:09:46 +00:00
Simon Lemay 8a34a1c954
fix: Rework packet loss metric tests to work with UTP 2.0 [MTT-4535] (#2174)
* Allow fixing the simulator RNG seed

* Fix packet loss test for UTP 2.0

* Add comment about random seed in packet loss test
2022-09-06 13:56:29 -04:00
Jeffrey Rainy efec5ebaa5
style: fixing the 'tools' part of the SDK to pass standards checks. (#2177) 2022-09-01 11:58:56 -04:00
Jeffrey Rainy 86b7d9901d
chore: UTP Transport 2.0 support [MTT-4473] (#2162)
* chore: adding preprocessor define in Netcode for GameObjects, when UTP Transport is 2.0 or above

* chore: adding preprocessor define in Netcode for GameObjects, when UTP Transport is 2.0 or above

* chore: adding preprocessor define in Netcode for GameObjects tests, when UTP Transport is 2.0 or above

* chore: conditional use of UTP 2.0

* style: coding standards

* style: coding standards

* Adding some fixed from PR review comment

* fix: fixing tools package compilation, when used in netcode for gameobjects, with UTP 2.0

* fix: fixing tools package compilation, when used in netcode for gameobjects, with UTP 2.0

* fix: build break for UTP 2.0 builds without tools installed

* fix: fixing build errors with Collection 2.1.0-exp3
2022-08-31 15:21:39 -04:00
Jeffrey Rainy a9de999625
fix: preventing exception from NetworkList, when modified before spawn. (#2169) 2022-08-30 11:39:02 -04:00
Jesse Olmer 91ee96ddeb
perf: Improve testproject DrawRay.cs performance (#2166)
Achieves a more GC friendly DrawRay debug code through caching the gameobject transform, reducing the engine calls to getTransform

Co-authored-by: Gustavo Santos <gustappsantos@gmail.com>
2022-08-30 07:50:04 -04:00
ashwini 6a46c38862
fix: Delete stray NetworkAnimator.meta file [MTT-4024] (#2153)
* fix:Delete stray NetworkAnimator.meta file

* Add changelog

Co-authored-by: Jesse Olmer <jesseo@unity3d.com>
2022-08-29 16:21:36 +00:00
Kitty Draper 61693575b3
fix: Client RPCs always reporting all RPCs as going to all clients, even when limited by ClientRpcParams [MTT-4468] (#2144)
* fix: Client RPCs always reporting all RPCs as going to all clients, even when limited by ClientRpcParams

* Changelog
2022-08-26 17:16:50 +00:00