app.hypergames.hypersdk 1.8.6 → 1.8.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.8.7](https://github.com/mvmhyper/hyper-sdk/compare/v1.8.6...v1.8.7) (2026-04-13)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update ping thresholds for connection status ([1eb6c95](https://github.com/mvmhyper/hyper-sdk/commit/1eb6c95354bdf7c408c0762c73c16deecd31fd2d))
7
+
1
8
  ## [1.8.6](https://github.com/mvmhyper/hyper-sdk/compare/v1.8.5...v1.8.6) (2026-04-13)
2
9
 
3
10
 
@@ -120,7 +120,6 @@ namespace Hyper.Internal.Managers
120
120
  if (IsBattleMode) return;
121
121
 
122
122
  _hasGameEnded = true;
123
- _dataManager.MuteAudioForGameSessionEnd();
124
123
  HyperRuntime.Timer.StopAllTimers();
125
124
 
126
125
  if (!HyperRuntime.GameContent.IsPracticeMenu)
@@ -859,7 +858,6 @@ namespace Hyper.Internal.Managers
859
858
  private void EndGameInternal()
860
859
  {
861
860
  _hasGameEnded = true;
862
- _dataManager.MuteAudioForGameSessionEnd();
863
861
 
864
862
  _eventManager.InvokeGameEndedEvent();
865
863
  HyperRuntime.Timer.StopAllTimers();
@@ -1396,8 +1394,7 @@ namespace Hyper.Internal.Managers
1396
1394
  private void ShowTimeUpModalInternal()
1397
1395
  {
1398
1396
  _hasGameEnded = true;
1399
- _dataManager.MuteAudioForGameSessionEnd();
1400
-
1397
+
1401
1398
  if (_timeUpModal == null)
1402
1399
  {
1403
1400
  EnsureTimeUpModal();
@@ -135,6 +135,7 @@ namespace Hyper.Internal
135
135
 
136
136
  void ExitBattleGame()
137
137
  {
138
+ HyperRuntime.DataManager.MuteAudioForGameSessionEnd();
138
139
  HyperRuntime.BackendManager.LogEvent(ConsoleEventType.GameEnd);
139
140
  }
140
141
 
@@ -167,6 +168,7 @@ namespace Hyper.Internal
167
168
  // Enable loading circle for exit action
168
169
  loadingCircle.SetActive(true);
169
170
 
171
+ HyperRuntime.DataManager.MuteAudioForGameSessionEnd();
170
172
  HyperRuntime.BackendManager.LogEvent(ConsoleEventType.PracticeGameEnd);
171
173
  }
172
174
 
@@ -129,8 +129,8 @@ MonoBehaviour:
129
129
  lost: {fileID: 4434394802318301849}
130
130
  restored: {fileID: 2473909893973907380}
131
131
  dynamicPingIcon: {fileID: 5540111900672461523}
132
- goodPingMaxMs: 120
133
- badPingMaxMs: 280
132
+ goodPingMaxMs: 230
133
+ badPingMaxMs: 300
134
134
  goodPingColor: {r: 0.14509805, g: 0.6666667, b: 0.4, a: 1}
135
135
  averagePingColor: {r: 1, g: 0.4862745, b: 0, a: 1}
136
136
  goodPingBar: {fileID: 1844935579317689283}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "app.hypergames.hypersdk",
3
- "version": "1.8.6",
3
+ "version": "1.8.7",
4
4
  "displayName": "HyperSDK",
5
5
  "description": "Official Unity SDK for Hyper: multiplayer battles, leaderboards, deterministic RNG, session management, tutorials, and WebGL optimizations for production-ready games.",
6
6
  "unity": "6000.0",