app.hypergames.hypersdk 1.1.3 → 1.1.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,31 @@
1
+ ## [1.1.7](https://github.com/mvmhyper/hyper-sdk/compare/v1.1.6...v1.1.7) (2025-11-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add asset installer for HyperLoader scene and template ([fb48694](https://github.com/mvmhyper/hyper-sdk/commit/fb4869406669af0270cc194483d2e992803bc532))
7
+
8
+ ## [1.1.6](https://github.com/mvmhyper/hyper-sdk/compare/v1.1.5...v1.1.6) (2025-11-25)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update releaserc.json ([b99f90c](https://github.com/mvmhyper/hyper-sdk/commit/b99f90c0f4e309fd95f83013fb370e66b0144cad))
14
+
15
+ ## [1.1.5](https://github.com/mvmhyper/hyper-sdk/compare/v1.1.4...v1.1.5) (2025-11-25)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * hyperloader scene tweaks ([0ca177e](https://github.com/mvmhyper/hyper-sdk/commit/0ca177ed15e4df257006684b7c7c2dfa5b8225d3))
21
+
22
+ ## [1.1.4](https://github.com/mvmhyper/hyper-sdk/compare/v1.1.3...v1.1.4) (2025-11-25)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * add HyperSDK installer to copy HyperLoader scene and WebGL template to Assets on package install ([d8d6643](https://github.com/mvmhyper/hyper-sdk/commit/d8d66433b0a3ffd755c73286811e62109e114995))
28
+
1
29
  # [1.1.3](https://github.com/mvmhyper/hyper-sdk/compare/v1.1.2...v1.1.3) (2025-11-25)
2
30
 
3
31
  ### Bug Fixes
@@ -0,0 +1,111 @@
1
+ using System.IO;
2
+ using UnityEditor;
3
+ using UnityEditor.PackageManager;
4
+
5
+ namespace Hyper.Editor
6
+ {
7
+ /// <summary>
8
+ /// Ensures developer facing assets that must live in the project (not inside the package)
9
+ /// are copied into Assets/ so they can be edited or extended.
10
+ /// </summary>
11
+ [InitializeOnLoad]
12
+ internal static class HyperSDKInstaller
13
+ {
14
+ private const string InstallerPrefsKey = "HyperSDKInstaller.LastInstalledVersion";
15
+ private const string HyperLoaderSceneRelativePath = "HyperLoader.unity";
16
+ private const string HyperLoaderSceneDestination = "Assets/HyperSDK/Scenes/HyperLoader.unity";
17
+ private const string WebGLTemplateRelativePath = "WebGLTemplates/HyperLoader";
18
+ private const string WebGLTemplateDestination = "Assets/WebGLTemplates/HyperLoader";
19
+
20
+ static HyperSDKInstaller()
21
+ {
22
+ EditorApplication.delayCall += EnsureSetupAssets;
23
+ }
24
+
25
+ private static void EnsureSetupAssets()
26
+ {
27
+ var packageInfo = UnityEditor.PackageManager.PackageInfo.FindForAssembly(typeof(HyperSDKInstaller).Assembly);
28
+ if (packageInfo == null || string.IsNullOrEmpty(packageInfo.resolvedPath))
29
+ {
30
+ // Skip in SDK dev mode (when running from Assets/HyperSDK instead of Packages/)
31
+ return;
32
+ }
33
+
34
+ // Skip if resolvedPath points to Assets/ (dev mode) instead of Packages/ (installed package)
35
+ if (!packageInfo.resolvedPath.Contains("Packages"))
36
+ {
37
+ return;
38
+ }
39
+
40
+ var previousVersion = EditorPrefs.GetString(InstallerPrefsKey, string.Empty);
41
+ var sceneExists = File.Exists(HyperLoaderSceneDestination);
42
+ var templateExists = Directory.Exists(WebGLTemplateDestination);
43
+
44
+ if (previousVersion == packageInfo.version && sceneExists && templateExists)
45
+ {
46
+ return;
47
+ }
48
+
49
+ var packageRoot = packageInfo.resolvedPath;
50
+ var hyperLoaderSource = Path.Combine(packageRoot, HyperLoaderSceneRelativePath);
51
+ var templateSource = Path.Combine(packageRoot, WebGLTemplateRelativePath);
52
+
53
+ try
54
+ {
55
+ CopyScene(hyperLoaderSource);
56
+ CopyTemplate(templateSource);
57
+
58
+ EditorPrefs.SetString(InstallerPrefsKey, packageInfo.version);
59
+ AssetDatabase.Refresh();
60
+ }
61
+ catch (IOException ioException)
62
+ {
63
+ UnityEngine.Debug.LogWarning($"HyperSDK Installer: failed to copy setup assets. {ioException.Message}");
64
+ }
65
+ }
66
+
67
+ private static void CopyScene(string sourcePath)
68
+ {
69
+ if (!File.Exists(sourcePath))
70
+ {
71
+ return;
72
+ }
73
+
74
+ var destinationDir = Path.GetDirectoryName(HyperLoaderSceneDestination);
75
+ if (!string.IsNullOrEmpty(destinationDir))
76
+ {
77
+ Directory.CreateDirectory(destinationDir);
78
+ }
79
+
80
+ FileUtil.CopyFileOrDirectory(sourcePath, HyperLoaderSceneDestination);
81
+
82
+ var sourceMeta = $"{sourcePath}.meta";
83
+ if (File.Exists(sourceMeta))
84
+ {
85
+ FileUtil.CopyFileOrDirectory(sourceMeta, $"{HyperLoaderSceneDestination}.meta");
86
+ }
87
+ }
88
+
89
+ private static void CopyTemplate(string sourceDirectory)
90
+ {
91
+ if (!Directory.Exists(sourceDirectory))
92
+ {
93
+ return;
94
+ }
95
+
96
+ var destinationDir = Path.GetDirectoryName(WebGLTemplateDestination);
97
+ if (!string.IsNullOrEmpty(destinationDir))
98
+ {
99
+ Directory.CreateDirectory(destinationDir);
100
+ }
101
+
102
+ if (Directory.Exists(WebGLTemplateDestination))
103
+ {
104
+ FileUtil.DeleteFileOrDirectory(WebGLTemplateDestination);
105
+ }
106
+
107
+ FileUtil.CopyFileOrDirectory(sourceDirectory, WebGLTemplateDestination);
108
+ }
109
+ }
110
+ }
111
+
@@ -0,0 +1,2 @@
1
+ fileFormatVersion: 2
2
+ guid: c91bf987b47bc58479476e0075a6bab0
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: b77b41e6c0aa09c42b6eb032c40ba0e8
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
package/HyperLoader.unity CHANGED
@@ -1052,7 +1052,7 @@ GameObject:
1052
1052
  m_Component:
1053
1053
  - component: {fileID: 6223682341740473317}
1054
1054
  m_Layer: 0
1055
- m_Name: ======= ATTACH YOUR SINGLETONS BELOW ========================================================================================================================================================
1055
+ m_Name: ====== ATTACH YOUR SINGLETONS BELOW ========================================================================================================================================================
1056
1056
  m_TagString: Untagged
1057
1057
  m_Icon: {fileID: 0}
1058
1058
  m_NavMeshLayer: 0
@@ -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: -1.1364162}
1543
- m_SizeDelta: {x: -15.3633, y: -8.8209}
1542
+ m_AnchoredPosition: {x: 0.09716797, y: -2.3641}
1543
+ m_SizeDelta: {x: -15.3633, y: -11.276}
1544
1544
  m_Pivot: {x: 0.5, y: 0.5}
1545
1545
  --- !u!224 &5943681541187729561 stripped
1546
1546
  RectTransform:
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "app.hypergames.hypersdk",
3
- "version": "1.1.3",
3
+ "version": "1.1.7",
4
4
  "displayName": "HyperSDK",
5
- "description": "Official Unity SDK for HyperGames platform. Provides seamless integration for WebGL game development with built-in support for multiplayer battles, score submission, tutorial systems, and platform-specific optimizations. Includes comprehensive editor tools for build automation, RNG migration, and WebGL configuration.",
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",
7
7
  "unityRelease": "0b5",
8
8
  "keywords": [