Skip to content

Commit 05d4a5a

Browse files
feat: Boss Room updated to NGO v1.4.0 (#829)
* Boss Room updated to NGO v1.4.0 * changelog addition
1 parent d910235 commit 05d4a5a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ Additional documentation and release notes are available at [Multiplayer Documen
1212
* Replaced our polling for lobby updates with a subscription to the new Websocket based LobbyEvents (#805). This saves up a significant amount of bandwidth usage to and from the service, since updates are infrequent in this game. Now clients and hosts only use up bandwidth on the Lobby service when it is needed. With polling, we used to send a GET request per client once every 2s. The responses were between ~550 bytes and 900 bytes, so if we suppose an average of 725 bytes and 100 000 concurrent users (CCU), this amounted to around 725B * 30 calls per minute * 100 000 CCU = 2.175 GB per minute. Scaling this to a month would get us 93.96 TB per month. In our case, since the only changes to the lobbies happen when a user connects or disconnects, most of that data was not necessary and can be saved to reduce bandwidth usage. Since the cost of using the Lobby service depends on bandwidth usage, this would also save money on an actual game.
1313
* Simplified reconnection flow by offloading responsibility to ConnectionMethod (#804). Now the ClientReconnectingState uses the ConnectionMethod it is configured with to handle setting up reconnection (i.e. reconnecting to the Lobby before trying to reconnect to the Relay server if it is using Relay and Lobby). It can now also fail early and stop retrying if the lobby doesn't exist anymore.
1414
* Replaced our custom pool implementation using queues with ObjectPool (#824)
15-
* Upgraded Boss Room to NGO 1.3.1 (#828) NetworkPrefabs inside NetworkManager's NetworkPrefabs list have been converted to NetworkPrefabsList ScriptableObject.
15+
* Upgraded Boss Room to NGO 1.3.1 (#828) NetworkPrefabs inside NetworkManager's NetworkPrefabs list have been converted to NetworkPrefabsList ScriptableObject.
16+
* Upgraded Boss Room to NGO 1.4.0 (#829)
1617

1718
### Cleanup
1819
* Clarified a TODO comment inside ClientCharacter, detailing how anticipation should only be executed on owning client players (#786)

Packages/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"com.unity.learn.iet-framework": "2.2.2",
1111
"com.unity.memoryprofiler": "0.5.0-preview.1",
1212
"com.unity.multiplayer.tools": "1.1.0",
13-
"com.unity.netcode.gameobjects": "1.3.1",
13+
"com.unity.netcode.gameobjects": "1.4.0",
1414
"com.unity.performance.profile-analyzer": "1.1.1",
1515
"com.unity.postprocessing": "3.2.2",
1616
"com.unity.render-pipelines.universal": "12.1.8",

Packages/packages-lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
"url": "https://packages.unity.com"
143143
},
144144
"com.unity.netcode.gameobjects": {
145-
"version": "1.3.1",
145+
"version": "1.4.0",
146146
"depth": 0,
147147
"source": "registry",
148148
"dependencies": {

0 commit comments

Comments
 (0)