app.hypergames.hypersdk 1.1.7 → 1.1.8
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.1.8](https://github.com/mvmhyper/hyper-sdk/compare/v1.1.7...v1.1.8) (2025-11-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* ensure installer copies assets for npm installs ([df1285f](https://github.com/mvmhyper/hyper-sdk/commit/df1285fe507a89e4c1e660d5667af49227e91a89))
|
|
7
|
+
|
|
1
8
|
## [1.1.7](https://github.com/mvmhyper/hyper-sdk/compare/v1.1.6...v1.1.7) (2025-11-25)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -31,8 +31,9 @@ namespace Hyper.Editor
|
|
|
31
31
|
return;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
// Skip if resolvedPath points
|
|
35
|
-
|
|
34
|
+
// Skip if resolvedPath points inside Assets (embedded/dev mode). Only run for cache/registry installs.
|
|
35
|
+
var normalizedPath = packageInfo.resolvedPath.Replace('\\', '/');
|
|
36
|
+
if (normalizedPath.Contains("/Assets/"))
|
|
36
37
|
{
|
|
37
38
|
return;
|
|
38
39
|
}
|
package/HyperLoader.unity
CHANGED
|
@@ -1539,8 +1539,8 @@ RectTransform:
|
|
|
1539
1539
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
1540
1540
|
m_AnchorMin: {x: 0, y: 0}
|
|
1541
1541
|
m_AnchorMax: {x: 1, y: 1}
|
|
1542
|
-
m_AnchoredPosition: {x: 0.09716797, y: -
|
|
1543
|
-
m_SizeDelta: {x: -15.3633, y: -
|
|
1542
|
+
m_AnchoredPosition: {x: 0.09716797, y: -0.12949944}
|
|
1543
|
+
m_SizeDelta: {x: -15.3633, y: -6.8068}
|
|
1544
1544
|
m_Pivot: {x: 0.5, y: 0.5}
|
|
1545
1545
|
--- !u!224 &5943681541187729561 stripped
|
|
1546
1546
|
RectTransform:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "app.hypergames.hypersdk",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"displayName": "HyperSDK",
|
|
5
5
|
"description": "Official Unity SDK for HyperGames. Plug in platform APIs, multiplayer battles, score submission, tutorials, and build/WebGL tooling so WebGL games ship faster.",
|
|
6
6
|
"unity": "6000.0",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"email": "info@mvm.gg",
|
|
26
26
|
"url": "https://mvm.gg/"
|
|
27
27
|
},
|
|
28
|
-
"licensesUrl": "https://
|
|
29
|
-
"changelogUrl": "https://
|
|
30
|
-
"documentationUrl": "https://
|
|
28
|
+
"licensesUrl": "https://github.com/mvmhyper/hyper-sdk/blob/main/LICENSE.md",
|
|
29
|
+
"changelogUrl": "https://github.com/mvmhyper/hyper-sdk/blob/main/CHANGELOG.md",
|
|
30
|
+
"documentationUrl": "https://docs.hypergames.app/",
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|
|
33
33
|
"url": "https://github.com/mvmhyper/hyper-sdk.git",
|