From 9a71dc6af9a0c12d83e6517542f073ab99cf3059 Mon Sep 17 00:00:00 2001 From: Samuel Bellomo Date: Mon, 28 Nov 2022 17:50:00 -0500 Subject: [PATCH 1/2] Package bump and setting x axis to x per seconds. Had to change the sample count to a lower value now that we're using seconds and not frames. --- .../Net/RNSM/CustomNetStatsMonitorConfiguration.asset | 4 ++-- Packages/manifest.json | 2 +- Packages/packages-lock.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Packages/com.unity.multiplayer.samples.coop/Utilities/Net/RNSM/CustomNetStatsMonitorConfiguration.asset b/Packages/com.unity.multiplayer.samples.coop/Utilities/Net/RNSM/CustomNetStatsMonitorConfiguration.asset index 2fb54f0d0..5821f3d4d 100644 --- a/Packages/com.unity.multiplayer.samples.coop/Utilities/Net/RNSM/CustomNetStatsMonitorConfiguration.asset +++ b/Packages/com.unity.multiplayer.samples.coop/Utilities/Net/RNSM/CustomNetStatsMonitorConfiguration.asset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5080a9b907bac3cbc409cf77779de83470afe1262c4c76f661e1453f39ac2a93 -size 5873 +oid sha256:a49a9ee7b8321910ba0662f14c28df614243eaf941cb9b6607312fa6084c3933 +size 6173 diff --git a/Packages/manifest.json b/Packages/manifest.json index 4078aa827..1cab2257e 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -9,7 +9,7 @@ "com.unity.ide.vscode": "1.2.5", "com.unity.learn.iet-framework": "2.2.2", "com.unity.memoryprofiler": "0.5.0-preview.1", - "com.unity.multiplayer.tools": "1.0.0", + "com.unity.multiplayer.tools": "1.1.0", "com.unity.netcode.gameobjects": "1.1.0", "com.unity.performance.profile-analyzer": "1.1.1", "com.unity.postprocessing": "3.2.2", diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json index 66e3419f0..85f339035 100644 --- a/Packages/packages-lock.json +++ b/Packages/packages-lock.json @@ -129,7 +129,7 @@ } }, "com.unity.multiplayer.tools": { - "version": "1.0.0", + "version": "1.1.0", "depth": 0, "source": "registry", "dependencies": { From 08405e8da2c1be826356f5b7a90a1d4b0c421136 Mon Sep 17 00:00:00 2001 From: Samuel Bellomo Date: Mon, 28 Nov 2022 17:56:57 -0500 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 898345513..923605f3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ Additional documentation and release notes are available at [Multiplayer Documen * ### Changed * Hosts now delete their lobby when shutting down instead of only leaving it (#772) Since Boss Room doesn't support host migration, there is no need to keep the lobby alive after the host shuts down. This also changes how LobbyServiceExceptions are handled to prevent popup messages on clients trying to leave a lobby that is already deleted, following the best practices outlined in this doc : https://docs.unity.com/lobby/delete-a-lobby.html -* +* Bumped RNSM to 1.1.0: Switched x axis units to seconds instead of frames now that it's available. This means adjusting the sample count to a lower value as well to 30 seconds, since the x axis was moving too slowly. (#788) ### Cleanup * ### Fixed